Skip to content

Commit c915069

Browse files
committed
-
1 parent e662c37 commit c915069

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
from cute_base_timer import CuteBaseTimer
2-
from thread_timer import ThreadTimer
1+
from .cute_base_timer import CuteBaseTimer
2+
from .thread_timer import ThreadTimer

source_py3/python_toolbox/wx_tools/widgets/cute_window/bind_savvy_evt_handler/bind_savvy_evt_handler_type.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
from .event_handler_grokker import EventHandlerGrokker
1010

1111

12-
class BindSavvyEvtHandlerType(type):
12+
class BindSavvyEvtHandlerType(type(wx.EvtHandler)):
1313
'''
1414
Metaclass for the `BindSavvyEvtHandler` class.
1515
@@ -44,7 +44,8 @@ def _BindSavvyEvtHandlerType__event_handler_grokkers(cls):
4444
cls.__name__) and
4545
callable(value) and
4646
getattr(value, '_BindSavvyEvtHandlerType__dont_bind_automatically',
47-
None) is not True
47+
None) is not True,
48+
force_dict_type=dict
4849
)
4950
'''Dict mapping names to event handling functions.'''
5051

0 commit comments

Comments
 (0)