8000 minor pep8 fix · matplotlib/matplotlib@2a70aff · GitHub
[go: up one dir, main page]

Skip to content

Commit 2a70aff

Browse files
committed
minor pep8 fix
1 parent 2359f09 commit 2a70aff

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

lib/matplotlib/backends/backend_qt4.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,8 +87,10 @@
8787
SPECIAL_KEYS.update({QtCore.Qt.Key_Control: 'super', # cmd/apple key
8888
QtCore.Qt.Key_Meta: 'control',
8989
})
90-
MODIFIER_KEYS[0] = ('super', QtCore.Qt.ControlModifier, QtCore.Qt.Key_Control)
91-
MODIFIER_KEYS[2] = ('ctrl', QtCore.Qt.MetaModifier, QtCore.Qt.Key_Meta)
90+
MODIFIER_KEYS[0] = ('super', QtCore.Qt.ControlModifier,
91+
QtCore.Qt.Key_Control)
92+
MODIFIER_KEYS[2] = ('ctrl', QtCore.Qt.MetaModifier,
93+
QtCore.Qt.Key_Meta)
9294

9395

9496
def fn_name():

0 commit comments

Comments
 (0)
0