sleep_data / util /debug.py
thelou1s's picture
clean code
5dedebd
DEBUG = True
# DEBUG = False
def debug_print(self, *args, sep=' ', end='\n', file=None):
if DEBUG:
print(self, *args, sep, end, file)