diff options
author | Parker <contact@pkrm.dev> | 2024-11-29 00:27:38 -0600 |
---|---|---|
committer | Parker <contact@pkrm.dev> | 2024-11-29 00:27:38 -0600 |
commit | d34726947d567ea92d105101711b04263e78cc80 (patch) | |
tree | b369cfbbf89cb2c86c19427443c428e3815ed254 /test.py | |
parent | 33493b7b4ec72636d73910cff93a9b3a3c863a2f (diff) |
Remove unneeded checks/messages
Diffstat (limited to 'test.py')
-rw-r--r-- | test.py | 14 |
1 files changed, 3 insertions, 11 deletions
@@ -1,11 +1,3 @@ -import datetime - -now = datetime.datetime.now(datetime.timezone.utc).strftime( - "%Y-%m-%d %H:%M:%S" -) - -import time - -print(now) -time.sleep(2) -print(now) +while not Exception: + print("Test") + Exception |