We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d3f506e commit 8b80bb0Copy full SHA for 8b80bb0
albow/core/CoreUtilities.py
@@ -52,7 +52,7 @@
52
53
class CoreUtilities:
54
55
- time_base = 0
+ timeBase = 0
56
57
"""
58
A static class for some leftover module functions
@@ -72,5 +72,5 @@ def add_modifiers(event):
72
@staticmethod
73
def init_timebase():
74
75
- CoreUtilities.time_base = time() * 1000.0 - get_ticks()
76
- print(f"time_base: {str(CoreUtilities.time_base)}")
+ CoreUtilities.timeBase = time() * 1000.0 - get_ticks()
+ print(f"timeBase: {str(CoreUtilities.timeBase)}")
albow/core/Scheduler.py
@@ -91,7 +91,7 @@ def thunk():
91
92
def timestamp():
93
94
- return time() * 1000.0 - CoreUtilities.time_base
+ return time() * 1000.0 - CoreUtilities.timeBase
95
96
97
def cancel_call(token):
0 commit comments