diff options
| author | Tulir Asokan <tulir@maunium.net> | 2025-03-25 20:06:19 +0200 |
|---|---|---|
| committer | Tulir Asokan <tulir@maunium.net> | 2025-03-25 20:06:19 +0200 |
| commit | 3ce380645da442187d033656bd75350bb9e4b548 (patch) | |
| tree | 955c026c5a2065b8fa547904d2fa21a771b14921 /sticker/pack.py | |
| parent | a8effa2efa0bc41173bf086742bbe615ee733091 (diff) | |
Update urls and asyncio calls
Diffstat (limited to 'sticker/pack.py')
| -rw-r--r-- | sticker/pack.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sticker/pack.py b/sticker/pack.py index a4ca1f2..1a0bb41 100644 --- a/sticker/pack.py +++ b/sticker/pack.py @@ -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__": |
