I've been working to get this running, but I keep encountering the same error regardless of adjustments made. When executing python3 main.py it gives the following result:
File "<fstring>", line 1 (last_price=) ^ SyntaxError: invalid syntax
Python has been updated to 3.9.5, and the requirements have been installed. Any advice or solution? Thank you.
fstrings support = behind the variable name (f"{SomeVar=}") since Python 3.8 (for more info see here).
To fix this issue update your python version to 3.8 or higher
I've been working to get this running, but I keep encountering the same error regardless of adjustments made. When executing python3 main.py it gives the following result:
File "<fstring>", line 1 (last_price=) ^ SyntaxError: invalid syntax
Python has been updated to 3.9.5, and the requirements have been installed. Any advice or solution? Thank you.