From 94e98d3b9e51afff760fe464569e165d4a1aa5ad Mon Sep 17 00:00:00 2001 From: deng Date: Fri, 7 Apr 2023 15:30:26 +0800 Subject: [PATCH] untrack asyncio testing script --- test_asyncio.py | 15 --------------- 1 file changed, 15 deletions(-) delete mode 100644 test_asyncio.py diff --git a/test_asyncio.py b/test_asyncio.py deleted file mode 100644 index 56c09de..0000000 --- a/test_asyncio.py +++ /dev/null @@ -1,15 +0,0 @@ -# test_asyncio.py -# -# author: deng -# date : 20230328 - -import asyncio - - -async def main(): - await asyncio.sleep(1) - print('hello') - - -if __name__ == '__main__': - asyncio.run(main()) \ No newline at end of file