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
At random intervals I keep getting the following error.
.vscode\extensions\ms-python.python-2020.12.424452561\pythonFiles\lib\python\debugpy_vendored\pydevd_pydevd_bundle\pydevd_resolver.py:193: FutureWarning: _AXIS_NUMBERS has been deprecated.
attr = getattr(var, name)
.vscode\extensions\ms-python.python-2020.12.424452561\pythonFiles\lib\python\debugpy_vendored\pydevd_pydevd_bundle\pydevd_resolver.py:193: FutureWarning: _AXIS_NAMES has been deprecated.
attr = getattr(var, name)
Linters checking all attributes might run into deprecated ones, so we typically hide those deprecated attributes from the dir (which we didn't do for those attributes). @topper-123 has a fix -> #38740
At random intervals I keep getting the following error.
This seems to be refering to how I am using a dataframe in pandas. Though, due to the delays, I am not sure what specifically. I have found only one other refernce to this issue on the internet https://intellij-support.jetbrains.com/hc/en-us/community/posts/360009512560-PyDev-FutureWarning-Django-console
Saying they believe it occurs on
df.columns
I'm running my project though a conda environment with:
Anyone got any ideas?
The text was updated successfully, but these errors were encountered: