Skip to content

Commit ba77d16

Browse files
committed
PEP8: Fix line length
1 parent fb1f6e6 commit ba77d16

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

lib/matplotlib/backends/backend_webagg_core.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,8 @@ def handle_event(self, event):
190190
pass
191191
elif e_type == 'draw':
192192
self.draw()
193-
elif e_type in ('button_press', 'button_release', 'motion_notify', 'scroll'):
193+
elif e_type in ('button_press', 'button_release', 'motion_notify',
194+
'scroll'):
194195
x = event['x']
195196
y = event['y']
196197
y = self.get_renderer().height - y

0 commit comments

Comments
 (0)