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/param.py | |
parent | 272d38407f0a7460b0e3958a8dfeb71dfb342b3e (diff) |
grc: fix pylint C0326: wrong number of spaces
Diffstat (limited to 'grc/gui/canvas/param.py')
-rw-r--r-- | grc/gui/canvas/param.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/grc/gui/canvas/param.py b/grc/gui/canvas/param.py index 26a3090153..2d472e1142 100644 --- a/grc/gui/canvas/param.py +++ b/grc/gui/canvas/param.py @@ -70,7 +70,7 @@ class Param(CoreParam): tooltip_lines = ['Key: ' + self.key, 'Type: ' + self.dtype] if self.is_valid(): value = self.get_evaluated() - if hasattr(value,"__len__"): + if hasattr(value, "__len__"): tooltip_lines.append('Length: {}'.format(len(value))) value = str(value) if len(value) > 100: |