8000 Fix gtk4 incorrect import. · matplotlib/matplotlib@84aa97e · GitHub
[go: up one dir, main page]

Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 84aa97e

Browse files
committed
Fix gtk4 incorrect import.
There's no backend_gtk module.
1 parent aeb0692 commit 84aa97e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/matplotlib/backends/backend_gtk4.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
_BackendGTK, _FigureManagerGTK, _NavigationToolbar2GTK,
2727
TimerGTK as TimerGTK4,
2828
)
29-
from .backend_gtk import backend_version # noqa: F401 # pylint: disable=W0611
29+
from ._backend_gtk import backend_version # noqa: F401 # pylint: disable=W0611
3030

3131

3232
class FigureCanvasGTK4(Gtk.DrawingArea, FigureCanvasBase):

0 commit comments

Comments
 (0)
0