Skip to content

Commit

Permalink
Oops.
Browse files Browse the repository at this point in the history
  • Loading branch information
DemonicSavage committed Nov 28, 2023
1 parent 554261d commit d4e1408
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions src/mikan/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -93,12 +93,10 @@ def main() -> None: # pragma: no cover
if sys.platform.startswith("win"):
asyncio.set_event_loop_policy(asyncio.WindowsSelectorEventLoopPolicy())

# try:
# asyncio.run(run(args))
# except Exception as e:
# print(f"Error: {e}")

asyncio.run(run(args))
try:
asyncio.run(run(args))
except Exception as e:
print(f"Error: {e}")


if __name__ == "__main__": # pragma: no cover
Expand Down

0 comments on commit d4e1408

Please sign in to comment.