We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fcb96d1 commit 55486c5Copy full SHA for 55486c5
2 files changed
viscm/bezierbuilder/__init__.py
@@ -26,7 +26,7 @@
26
"""
27
28
import numpy as np
29
-from matplotlib.backends.qt_compat import QtCore
+from matplotlib.backends.qt_compat import QtCore # type: ignore [attr-defined]
30
from matplotlib.lines import Line2D
31
32
from viscm.bezierbuilder.curve import curve_method
viscm/gui.py
@@ -26,7 +26,11 @@
# matplotlib.rcParams['backend'] = "QtAgg"
# Do this first before any other matplotlib imports, to force matplotlib to
# use a Qt backend
-from matplotlib.backends.qt_compat import QtCore, QtGui, QtWidgets
+from matplotlib.backends.qt_compat import ( # type: ignore [attr-defined]
+ QtCore,
+ QtGui,
+ QtWidgets,
33
+)
34
from matplotlib.colors import ListedColormap
35
from matplotlib.gridspec import GridSpec
36
0 commit comments