When i do
(and more complex examples) I get
/usr/local/lib/python3.4/dist-packages/ matplotlib/backends/backend_gtk3.py:215: Warning: Source ID 7 was not found when attempting to remove it GLib.source_remove(self._idle_event_id)
What causes this and how can I get rid of these warnings?
I know I can use
import warnings warnings.simplefilter("ignore")
to get rid of all the warnings, but thatβs not what I am asking for. I want to have warnings, but none of matplotlib (especially the one on top).
source share