From 82aff29f0e36441fd89819b5674259f69ee9d6ae Mon Sep 17 00:00:00 2001 From: Logan MacLaren Date: Tue, 7 Jul 2026 08:50:29 -0400 Subject: [PATCH] remove asyncio import - no longer required --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 1b83af3..8a8cbbf 100755 --- a/setup.py +++ b/setup.py @@ -25,6 +25,6 @@ ], packages=["mythic"], include_package_data=True, - install_requires=["aiohttp", "asyncio", "gql[aiohttp,websockets]==3.5.3", "pycryptodome"], + install_requires=["aiohttp", "gql[aiohttp,websockets]==3.5.3", "pycryptodome"], entry_points={}, )