diff options
author | Tom Rondeau <tom@trondeau.com> | 2014-07-07 12:18:00 -0400 |
---|---|---|
committer | Tom Rondeau <tom@trondeau.com> | 2014-07-07 12:18:00 -0400 |
commit | 597b93798a804cde1783d6d2ab53b348d57c44cd (patch) | |
tree | b65e73bb0de634ff5d209b15971ebdabf369a45c /gr-wxgui/python/wxgui/plotter/grid_plotter_base.py | |
parent | 1151e5502ccd440ebd89599cf7e4be4fb5ed8334 (diff) |
Removing trailing/extra whitespaces before release.
We should be more careful about letting these into the code in the future. In emacs, we can use (add-hook 'before-save-hook 'delete-trailing-whitespace).
Diffstat (limited to 'gr-wxgui/python/wxgui/plotter/grid_plotter_base.py')
-rw-r--r-- | gr-wxgui/python/wxgui/plotter/grid_plotter_base.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gr-wxgui/python/wxgui/plotter/grid_plotter_base.py b/gr-wxgui/python/wxgui/plotter/grid_plotter_base.py index e1ac311deb..bc48ad72f5 100644 --- a/gr-wxgui/python/wxgui/plotter/grid_plotter_base.py +++ b/gr-wxgui/python/wxgui/plotter/grid_plotter_base.py @@ -78,7 +78,7 @@ class grid_plotter_base(plotter_base): def set_point_label_coordinate(self, coor): """ Set the point label coordinate. - + Args: coor: the coordinate x, y tuple or None """ @@ -87,7 +87,7 @@ class grid_plotter_base(plotter_base): self._point_label_cache.changed(True) self.update() self.unlock() - + def call_freq_callback(self, coor): try: x, y = self._point_label_coordinate @@ -102,7 +102,7 @@ class grid_plotter_base(plotter_base): x_val = x_win_scalar*(self.x_max-self.x_min) + self.x_min y_val = y_win_scalar*(self.y_max-self.y_min) + self.y_min self._call_callback(x_val, y_val) - + def enable_grid_aspect_ratio(self, enable=None): """ Enable/disable the grid aspect ratio. @@ -371,7 +371,7 @@ class grid_plotter_base(plotter_base): def enable_grid_lines(self, enable=None): """ Enable/disable the grid lines. - + Args: enable: true to enable |