From ff22625e3b7f745f7398a2c58cb36f7f4f138453 Mon Sep 17 00:00:00 2001 From: Clayton Smith <argilo@gmail.com> Date: Mon, 12 Oct 2020 16:35:17 -0400 Subject: grc: fix pylint C0326: wrong number of spaces --- grc/gui/VariableEditor.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'grc/gui/VariableEditor.py') diff --git a/grc/gui/VariableEditor.py b/grc/gui/VariableEditor.py index 611b096e5..b24382919 100644 --- a/grc/gui/VariableEditor.py +++ b/grc/gui/VariableEditor.py @@ -181,13 +181,13 @@ class VariableEditor(Gtk.VBox): # Evaluate and show the value (if it is a variable) if block.is_variable: # Evaluate the params - for key in block.params : + for key in block.params: evaluated = str(block.params[key].evaluate()) self.set_tooltip_text(evaluated) # Evaluate the block value try: - evaluated = str( eval(block.value,block.parent.namespace,block.namespace)) + evaluated = str(eval(block.value, block.parent.namespace, block.namespace)) self.set_tooltip_text(evaluated) except Exception as error: self.set_tooltip_text(str(error)) -- cgit v1.2.3