diff options
author | Clayton Smith <argilo@gmail.com> | 2020-10-12 16:35:17 -0400 |
---|---|---|
committer | Sebastian Koslowski <sebastian.koslowski@gmail.com> | 2020-10-20 15:16:48 +0200 |
commit | ff22625e3b7f745f7398a2c58cb36f7f4f138453 (patch) | |
tree | 7b34c8d555e352283dd5a35a0baf26e31ba71072 /grc/gui/canvas/flowgraph.py | |
parent | 272d38407f0a7460b0e3958a8dfeb71dfb342b3e (diff) |
grc: fix pylint C0326: wrong number of spaces
Diffstat (limited to 'grc/gui/canvas/flowgraph.py')
-rw-r--r-- | grc/gui/canvas/flowgraph.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/grc/gui/canvas/flowgraph.py b/grc/gui/canvas/flowgraph.py index 0f4b32a942..65db00eaff 100644 --- a/grc/gui/canvas/flowgraph.py +++ b/grc/gui/canvas/flowgraph.py @@ -35,7 +35,7 @@ class _ContextMenu(object): # In GTK 3.22 Menu.popup was deprecated, we want to popup at the # pointer, so use that new function instead if we can. - if Gtk.check_version(3,22,0) is None: + if Gtk.check_version(3, 22, 0) is None: self.popup = self._menu.popup_at_pointer def popup(self, event): @@ -484,7 +484,7 @@ class FlowGraph(CoreFlowgraph, Drawable): #TODO - this is a workaround for bus ports not having a proper coordinate # until the shape is drawn. The workaround is to draw blocks before connections - for element in filter(lambda x: x.is_block, self._elements_to_draw) : + for element in filter(lambda x: x.is_block, self._elements_to_draw): element.create_shapes() for element in filter(lambda x: not x.is_block, self._elements_to_draw): |