mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-08-02 07:23:41 +02:00
py: Reformat all Python files consistently
This commit is the unmodified results of running ``` black $(git ls-files '*.py') ``` with black version 19.10b0. See #2046. Signed-off-by: Philip Withnall <pwithnall@endlessos.org>
This commit is contained in:
@@ -13,9 +13,9 @@ import string
|
||||
import sys
|
||||
|
||||
if len(sys.argv) != 2:
|
||||
raise SystemExit('Usage: %s <output-file>' % sys.argv[0])
|
||||
raise SystemExit("Usage: %s <output-file>" % sys.argv[0])
|
||||
|
||||
with open(sys.argv[1], 'w', newline='\n') as f:
|
||||
with open(sys.argv[1], "w", newline="\n") as f:
|
||||
for count in range(12):
|
||||
for c in string.ascii_lowercase:
|
||||
f.write("%s\n" % (c * 100))
|
||||
|
Reference in New Issue
Block a user