8000 MNT: us alias imports to start down the path of adding typing · matplotlib/mpl-gui@83f5d01 · GitHub
[go: up one dir, main page]

Skip to content 8000

Commit 83f5d01

Browse files
committed
MNT: us alias imports to start down the path of adding typing
1 parent 3130568 commit 83f5d01

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

mpl_gui/__init__.py

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,12 @@
2222

2323
from ._figure import Figure # noqa: F401
2424

25-
from ._manage_interactive import ion, ioff, is_interactive # noqa: F401
26-
from ._manage_backend import select_gui_toolkit # noqa: F401
25+
from ._manage_interactive import ( # noqa: F401
26+
ion as ion,
27+
ioff as ioff,
28+
is_interactive as is_interactive,
29+
)
30+
from ._manage_backend import select_gui_toolkit as select_gui_toolkit # noqa: F401
2731
from ._manage_backend import current_backend_module as _cbm
2832
from ._promotion import promote_figure as _promote_figure
2933
from ._creation import (

0 commit comments

Comments
 (0)
0