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/core/FlowGraph.py | |
parent | 272d38407f0a7460b0e3958a8dfeb71dfb342b3e (diff) |
grc: fix pylint C0326: wrong number of spaces
Diffstat (limited to 'grc/core/FlowGraph.py')
-rw-r--r-- | grc/core/FlowGraph.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/grc/core/FlowGraph.py b/grc/core/FlowGraph.py index d7a2bfeeee..f4984d608e 100644 --- a/grc/core/FlowGraph.py +++ b/grc/core/FlowGraph.py @@ -105,7 +105,7 @@ class FlowGraph(Element): output = [] for snip in snippets: - d ={} + d = {} sect = snip.params['section'].value d['section'] = sect d['priority'] = snip.params['priority'].value @@ -455,7 +455,7 @@ class FlowGraph(Element): had_connect_errors = True for block in self.blocks: - if block.is_dummy_block : + if block.is_dummy_block: block.rewrite() # Make ports visible # Flowgraph errors depending on disabled blocks are not displayed # in the error dialog box |