sleep_data / debug.py
thelou1s's picture
init
f1f2090
raw history blame
No virus
148 Bytes
DEBUG = True
# DEBUG = False
def debug_print(self, *args, sep=' ', end='\n', file=None):
if DEBUG:
print(self, *args, sep, end, file)