summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNirbheek Chauhan <nirbheek@centricular.com>2022-07-31 16:08:01 +0530
committerNirbheek Chauhan <nirbheek@centricular.com>2022-08-02 19:48:27 +0530
commit1cbffdb129ad97279d8b36d30a78f3f477bcae84 (patch)
tree823c537af8a061dbfc2cd3bbf4b8260e0fd365ea
parentfdcdcbc0436d351f33b611654351c950652b876f (diff)
downloadpygobject-1cbffdb129ad97279d8b36d30a78f3f477bcae84.tar.gz
examples: Fix flake8 whitespace error
+ python -m flake8 ./examples/demo/demos/combobox.py:212:24: E275 missing whitespace after keyword
-rw-r--r--examples/demo/demos/combobox.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/demo/demos/combobox.py b/examples/demo/demos/combobox.py
index 36034bac..1215f16c 100644
--- a/examples/demo/demos/combobox.py
+++ b/examples/demo/demos/combobox.py
@@ -209,7 +209,7 @@ class ComboboxApp:
path = tree_model.get_path(treeiter)
indices = path.get_indices()
- sensitive = not(indices[0] == 1)
+ sensitive = not (indices[0] == 1)
cell.set_property('sensitive', sensitive)