Skip to content
This repository was archived by the owner on Jun 4, 2021. It is now read-only.

Commit 004a351

Browse files
committed
updated methods in decorators.py.
added pprint_debug to decorators.py.
1 parent bf554f8 commit 004a351

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/PyDebug/decorators.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88

99

10-
__all__ = ['debug', 'class_method_debug', 'check_time', 'DebugTkinterEvent']
10+
__all__ = ['debug', 'class_method_debug', 'check_time', 'debugTkinterEvent', 'pprint_debug']
1111

1212

1313

@@ -135,7 +135,7 @@ def timed(*args, **kwargs):
135135

136136

137137

138-
def DebugTkinterEvent(func: callable, tag: str = '_______________________________TkinterEvent_______________________________'):
138+
def debugTkinterEvent(func: callable, tag: str = '_______________________________TkinterEvent_______________________________'):
139139
@functools.wraps(func)
140140
def wrapper_debug(self, event: Event, *args, **kwargs):
141141
PRINT(f'{tag}\n{func.__class__}.{func.__name__}.{Event.__class__}', event.__dict__)

0 commit comments

Comments
 (0)