PEP fix: missing new line

This commit is contained in:
Matthias 2021-11-19 22:41:29 +01:00
parent 6a235c9f15
commit a9b89cc562
No known key found for this signature in database
GPG Key ID: F50EF5741D33E076
2 changed files with 2 additions and 2 deletions

View File

@ -27,4 +27,4 @@ if len(locales) > 0:
for lang in locales: for lang in locales:
print(" - {l}".format(l=lang)) print(" - {l}".format(l=lang))
sys.exit(len(locales)) sys.exit(len(locales))

View File

@ -28,4 +28,4 @@ print("There are {n} unstaged migration files:".format(n=len(migrations)))
for m in migrations: for m in migrations:
print(" - {m}".format(m=m)) print(" - {m}".format(m=m))
sys.exit(len(migrations)) sys.exit(len(migrations))