summaryrefslogtreecommitdiffstats
path: root/util/cmake/qmake_parser.py
diff options
context:
space:
mode:
authorJoerg Bornemann <[email protected]>2022-02-24 11:31:10 +0100
committerJoerg Bornemann <[email protected]>2022-02-28 15:40:32 +0100
commit8a6899239a02524b8ffe5f1ad0cd8a2b83ef6f01 (patch)
tree24d86da2d45fc6ad413fa5c6245a65d493f6d734 /util/cmake/qmake_parser.py
parent354e4e867acaa93e661769b2a78c146e181ba47f (diff)
pro2cmake: Re-format sources with black
...to have a consistent baseline for further improvements. Change-Id: Iba8e83a7a5cf5ca0cdf509f79e7d2dc2d8f42fec Reviewed-by: Alexandru Croitor <[email protected]>
Diffstat (limited to 'util/cmake/qmake_parser.py')
-rw-r--r--util/cmake/qmake_parser.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/util/cmake/qmake_parser.py b/util/cmake/qmake_parser.py
index 357a529e5ae..836e9a4319b 100644
--- a/util/cmake/qmake_parser.py
+++ b/util/cmake/qmake_parser.py
@@ -73,7 +73,7 @@ def fixup_comments(contents: str) -> str:
def flatten_list(input_list):
- """ Flattens an irregular nested list into a simple list."""
+ """Flattens an irregular nested list into a simple list."""
for el in input_list:
if isinstance(el, collections.abc.Iterable) and not isinstance(el, (str, bytes)):
yield from flatten_list(el)