8000 removed trailing whitespace · matplotlib/matplotlib@b26ec58 · GitHub
[go: up one dir, main page]

Skip to content

Commit b26ec58

Browse files
committed
removed trailing whitespace
1 parent 954dfd0 commit b26ec58

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

lib/matplotlib/widgets.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -802,7 +802,7 @@ def _keypress(self, event):
802802
func(self.text)
803803
if key == "enter":
804804
self._notify_submit_observers()
805-
805+
806806
def begin_typing(self, x):
807807
self.capturekeystrokes = True
808808
#disable command keys so that the user can type without
@@ -815,7 +815,7 @@ def begin_typing(self, x):
815815
#approximate it based on assuming all characters the same length
816816
self.cursor_index = len(self.text)
817817
self._rendercursor()
818-
818+
819819
def stop_typing(self):
820820
notifysubmit = False
821821
# because _notify_submit_users might throw an error in the
@@ -833,7 +833,7 @@ def stop_typing(self):
833833
if notifysubmit:
834834
self._notify_submit_observers()
835835

836-
836+
837837
def _click(self, event):
838838
if self.ignore(event):
839839
return
@@ -846,10 +846,10 @@ def _click(self, event):
846846
event.canvas.grab_mouse(self.ax)
847847
if not(self.capturekeystrokes):
848848
self.begin_typing(event.x)
849-
849+
850850
def _resize(self, event):
851851
self.stop_typing()
852-
852+
853853
def _motion(self, event):
854854
if self.ignore(event):
855855
return

0 commit comments

Comments
 (0)
0