summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNirbheek Chauhan <nirbheek@centricular.com>2022-07-31 16:08:01 +0530
committerNirbheek Chauhan <nirbheek@centricular.com>2022-07-31 16:11:37 +0530
commit17a6d85c259e3b98725cb6dcc34c77a9659fd3bf (patch)
treea560d83d29df282664b0f66a0c335b612e9e6a17
parentfc776c2058e11da5c3a4cebeea7f313057bc079f (diff)
downloadpygobject-17a6d85c259e3b98725cb6dcc34c77a9659fd3bf.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)