diff options
author | Clayton Smith <argilo@gmail.com> | 2020-10-12 16:59:09 -0400 |
---|---|---|
committer | Sebastian Koslowski <sebastian.koslowski@gmail.com> | 2020-10-20 15:16:48 +0200 |
commit | 74ae2184b1f5b025418bf57ba604f3e7a1f97523 (patch) | |
tree | 19bb952a0c3bd401216a2cc8e7b4efc27aa6d933 /grc/gui/canvas/flowgraph.py | |
parent | ff22625e3b7f745f7398a2c58cb36f7f4f138453 (diff) |
grc: fix pylint C0330: wrong hanging indentation
Diffstat (limited to 'grc/gui/canvas/flowgraph.py')
-rw-r--r-- | grc/gui/canvas/flowgraph.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/grc/gui/canvas/flowgraph.py b/grc/gui/canvas/flowgraph.py index 65db00eaff..03cfc9cdf8 100644 --- a/grc/gui/canvas/flowgraph.py +++ b/grc/gui/canvas/flowgraph.py @@ -280,7 +280,7 @@ class FlowGraph(CoreFlowgraph, Drawable): block.move((x_off, y_off)) while any(Utils.align_to_grid(block.coordinate) == Utils.align_to_grid(other.coordinate) - for other in self.blocks if other is not block): + for other in self.blocks if other is not block): block.move((Constants.CANVAS_GRID_SIZE, Constants.CANVAS_GRID_SIZE)) # shift all following blocks x_off += Constants.CANVAS_GRID_SIZE |