Skip to content

Commit

Permalink
Update tird.py
Browse files Browse the repository at this point in the history
  • Loading branch information
hakavlad committed Feb 18, 2024
1 parent c3b2cec commit cdabe7b
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion tird/tird.py
Original file line number Diff line number Diff line change
Expand Up @@ -2020,8 +2020,11 @@ def main() -> NoReturn:
WAR = '\033[1;3;93;40m' # bold italic yellow text, black background
RES = '\033[0m' # reset


DEBUG: bool = False

if not argv[1:]:
DEBUG: bool = False
pass
elif argv[1:] == ['-d'] or argv[1:] == ['--debug']:
DEBUG = True
else:
Expand Down

0 comments on commit cdabe7b

Please sign in to comment.