[pygobject/pygobject-3-42] examples: Fix flake8 whitespace error



commit 1cbffdb129ad97279d8b36d30a78f3f477bcae84
Author: Nirbheek Chauhan <nirbheek centricular com>
Date:   Sun Jul 31 16:08:01 2022 +0530

    examples: Fix flake8 whitespace error
    
    + python -m flake8
    ./examples/demo/demos/combobox.py:212:24: E275 missing whitespace after keyword

 examples/demo/demos/combobox.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
---
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)
 


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]