From 31a78d27d7f83899cc9f33e143934ca6ecdbf06b Mon Sep 17 00:00:00 2001 From: allegroai <> Date: Wed, 13 May 2020 20:33:50 +0300 Subject: [PATCH] Ignore plotly custom warnings --- trains/binding/matplotlib_bind.py | 1 + 1 file changed, 1 insertion(+) diff --git a/trains/binding/matplotlib_bind.py b/trains/binding/matplotlib_bind.py index c307dbd6..b488be00 100644 --- a/trains/binding/matplotlib_bind.py +++ b/trains/binding/matplotlib_bind.py @@ -107,6 +107,7 @@ class PatchedMatplotlib: import warnings warnings.filterwarnings(action='ignore', category=matplotlib.MatplotlibDeprecationWarning, module='plotly') + warnings.filterwarnings(action='ignore', category=UserWarning, module='plotly') except Exception: pass