You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if (sys.version_info.major == 3 and sys.version_info.minor >= 7):
asyncio.run(main())
elif (sys.version_info.major == 3 and sys.version_info.minor <= 6) and (sys.version_info.major == 3 and sys.version_info.minor >= 5):
loop = asyncio.get_event_loop()
loop.run_until_complete(asyncio.wait(main()))
else:
print("you currently need to have python 3.5 at least")
runs fine but when checked with mypy i get
8008: error: Module has no attribute "run"
which i guess is for python < 3.7
im running this command line
mypy --ignore-missing-imports <myfile.py>
im using Python 3.8.3 on this machine
in WSL
Linux DESKTOP-M4HNI3V 4.4.0-19041-Microsoft #1237-Microsoft Sat Sep 11 14:32:00 PST 2021 x86_64 x86_64 x86_64 GNU/Linux
The text was updated successfully, but these errors were encountered:
my code is below :-
import sys
runs fine but when checked with mypy i get
8008: error: Module has no attribute "run"
which i guess is for python < 3.7
im running this command line
mypy --ignore-missing-imports <myfile.py>
im using Python 3.8.3 on this machine
in WSL
Linux DESKTOP-M4HNI3V 4.4.0-19041-Microsoft #1237-Microsoft Sat Sep 11 14:32:00 PST 2021 x86_64 x86_64 x86_64 GNU/Linux
The text was updated successfully, but these errors were encountered: