Update urls and asyncio calls

This commit is contained in:
Tulir Asokan
2025-03-25 20:06:19 +02:00
parent a8effa2efa
commit 3ce380645d
3 changed files with 4 additions and 4 deletions

View File

@ -143,7 +143,7 @@ parser.add_argument("path", help="Path to the sticker pack directory", type=str)
def cmd():
asyncio.get_event_loop().run_until_complete(main(parser.parse_args()))
asyncio.run(main(parser.parse_args()))
if __name__ == "__main__":