File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change 26
26
"""
27
27
28
28
import numpy as np
29
- from matplotlib .backends .qt_compat import QtCore
29
+ from matplotlib .backends .qt_compat import QtCore # type: ignore [attr-defined]
30
30
from matplotlib .lines import Line2D
31
31
32
32
from viscm .bezierbuilder .curve import curve_method
Original file line number Diff line number Diff line change 26
26
# matplotlib.rcParams['backend'] = "QtAgg"
27
27
# Do this first before any other matplotlib imports, to force matplotlib to
28
28
# use a Qt backend
29
- from matplotlib .backends .qt_compat import QtCore , QtGui , QtWidgets
29
+ from matplotlib .backends .qt_compat import ( # type: ignore [attr-defined]
30
+ QtCore ,
31
+ QtGui ,
32
+ QtWidgets ,
33
+ )
30
34
from matplotlib .colors import ListedColormap
31
35
from matplotlib .gridspec import GridSpec
32
36
You can’t perform that action at this time.
0 commit comments