[glib/ebassi/issue-2601: 2/4] codegen: Fix whitespace
- From: Emmanuele Bassi <ebassi src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [glib/ebassi/issue-2601: 2/4] codegen: Fix whitespace
- Date: Tue, 15 Feb 2022 11:53:14 +0000 (UTC)
commit 128ae2b5f55a3067b8772c92d37cd266fbb71fc6
Author: Emmanuele Bassi <ebassi gnome org>
Date: Tue Feb 15 11:48:28 2022 +0000
codegen: Fix whitespace
This is Python, not C.
gio/gdbus-2.0/codegen/parser.py | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/gio/gdbus-2.0/codegen/parser.py b/gio/gdbus-2.0/codegen/parser.py
index cf8ea5229..142754739 100644
--- a/gio/gdbus-2.0/codegen/parser.py
+++ b/gio/gdbus-2.0/codegen/parser.py
@@ -77,13 +77,13 @@ class DBusXMLParser:
colon_index = line.find(": ")
if colon_index == -1:
if line.endswith(":"):
- symbol = line[0 : len(line) - 1]
+ symbol = line[0:len(line) - 1]
comment_state = DBusXMLParser.COMMENT_STATE_PARAMS
else:
comment_state = DBusXMLParser.COMMENT_STATE_SKIP
else:
symbol = line[0:colon_index]
- rest_of_line = line[colon_index + 2 :].strip()
+ rest_of_line = line[colon_index + 2:].strip()
if len(rest_of_line) > 0:
body += f"{rest_of_line}\n"
comment_state = DBusXMLParser.COMMENT_STATE_PARAMS
@@ -98,7 +98,7 @@ class DBusXMLParser:
body += f"{orig_line}\n"
else:
param = line[1:colon_index]
- docs = line[colon_index + 2 :]
+ docs = line[colon_index + 2:]
params[param] = docs
else:
comment_state = DBusXMLParser.COMMENT_STATE_BODY
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]