Skip to content

Commit

Permalink
ci: ignore ksubot error
Browse files Browse the repository at this point in the history
  • Loading branch information
tiann committed Oct 24, 2023
1 parent 4e3cbf6 commit 3cf5fc4
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion scripts/ksubot.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,4 +86,7 @@ async def main():
await bot.log_out()

if __name__ == "__main__":
asyncio.run(main())
try:
asyncio.run(main())
except Exception as e:
print(f"[-] An error occurred: {e}")

0 comments on commit 3cf5fc4

Please sign in to comment.