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
The keyword "async" is used as a parameter in the code, this is not compatible with the latest version of Python 3.7+. I suggest adding a "p_" front of parameters to avoid overlapping and increase compatibility across Python versions,
Of course this results in an error when trying to import the class: [...]DNAC-Python-SDK-master\python_client\api\discovery_api.py", line 121
async=params.get('async'),
^
SyntaxError: invalid syntax
The text was updated successfully, but these errors were encountered:
The keyword "async" is used as a parameter in the code, this is not compatible with the latest version of Python 3.7+. I suggest adding a "p_" front of parameters to avoid overlapping and increase compatibility across Python versions,
See https://docs.python.org/3/library/asyncio-task.html
Of course this results in an error when trying to import the class:
[...]DNAC-Python-SDK-master\python_client\api\discovery_api.py", line 121
async=params.get('async'),
^
SyntaxError: invalid syntax
The text was updated successfully, but these errors were encountered: