Skip to content

Commit 11d1a79

Browse files
committed
Add async to the script
1 parent 33efdf1 commit 11d1a79

1 file changed

Lines changed: 5 additions & 2 deletions

File tree

scripts/script.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
1-
def main() -> None:
1+
import asyncio
2+
3+
4+
async def main() -> None:
25
pass
36

47

58
if __name__ == "__main__":
6-
main()
9+
asyncio.run(main())

0 commit comments

Comments
 (0)