We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a67ae8d commit 62472c9Copy full SHA for 62472c9
doc/source/getting_started/intro_tutorials/04_plotting.rst
@@ -121,15 +121,13 @@ number of alternatives are available to plot data. Let’s use some
121
standard Python to get an overview of the available plot methods:
122
123
.. ipython:: python
124
+ :okwarning:
125
- import warnings
126
- with warnings.catch_warnings():
127
- warnings.simplefilter("ignore")
128
- [
129
- method_name
130
- for method_name in dir(air_quality.plot)
131
- if not method_name.startswith("_")
132
- ]
+ [
+ method_name
+ for method_name in dir(air_quality.plot)
+ if not method_name.startswith("_")
+ ]
133
134
.. note::
135
In many development environments such as IPython and
0 commit comments