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
May need to experiment with the correct level, but stacklevel=1 is almost always the wrong choice.
What would be helpful is reporting the code that triggered the warning.
In short, the call to warnings.warn appears here becausestacklevel=1:
C:\Users\danie\AppData\Local\hatch\env\virtual\altair\CXM7NV9I\doc\Lib\site-packages\sphinxext_altair\altairplot.py:261: UserWarning: altair-plot: C:\Users\danie\Documents\GitHub\altair\doc\user_guide\interactions\bindings_widgets.rst:45 Code Execution failed:NameError: name 'alt' is not defined
warnings.warn(message, stacklevel=1)
Coming from vega/altair#3561 (comment)
May need to experiment with the correct level, but
stacklevel=1
is almost always the wrong choice.What would be helpful is reporting the code that triggered the warning.
In short, the call to
warnings.warn
appears here becausestacklevel=1
:sphinxext-altair/sphinxext_altair/altairplot.py
Lines 244 to 253 in 7940667
Related
traitlets
isn't involved here, but through the issue you can see the process of increasingstacklevel
to find the source that raised the warning.The text was updated successfully, but these errors were encountered: