File tree Expand file tree Collapse file tree 2 files changed +3
-5
lines changed Expand file tree Collapse file tree 2 files changed +3
-5
lines changed Original file line number Diff line number Diff line change 1
1
import warnings
2
2
from matplotlib .cbook import mplDeprecation
3
+ # bulk-imports because we are pretending that file is this file
4
+ from .qt_compat import *
3
5
_warn_str = ("This module has been deprecated in 1.4 in favor "
4
6
"of matplotlib.backends.qt_compat\n "
5
7
"This module will be removed in 1.5, please update "
6
8
"your imports." )
7
- # bulk-imports because we are pretending that file is this file
8
- from .qt_compat import *
9
-
10
9
11
10
warnings .warn (_warn_str , mplDeprecation )
Original file line number Diff line number Diff line change 5
5
backend.qt4 (PyQt4|PySide) independent form of the subplot tool.
6
6
7
7
"""
8
+ from matplotlib .backends .qt_compat import QtCore , QtGui , QtWidgets
8
9
9
10
__author__ = 'rudolf.hoefler@gmail.com'
10
11
11
- from matplotlib .backends .qt_compat import QtCore , QtGui , QtWidgets
12
-
13
12
14
13
class UiSubplotTool (QtWidgets .QDialog ):
15
14
You can’t perform that action at this time.
0 commit comments