Python Forum
Error message - Printable Version

+- Python Forum (https://python-forum.io)
+-- Forum: Python Coding (https://python-forum.io/forum-7.html)
+--- Forum: General Coding Help (https://python-forum.io/forum-8.html)
+--- Thread: Error message (/thread-33810.html)



Error message - pybits - May-29-2021

I have giving someone some code and they are getting this error message when running the code. The error message does not come up when I run the code though.


RE: Error message - snippsat - May-29-2021

Should link to what code is used,i guess it's this one BinanceStatus
It fails on using typing module,should upgrade Python as 3.6 used here may not have the latest typing stuff.
So a simple test this should not fail,here using Python 3.9
>>> from typing import Deque
>>> 
>>> Deque
typing.Deque
Python 3.9/3.8 and pip installation under Windows