Skip to content

Commit 9769e06

Browse files
committed
black format file for easier reading
Signed-off-by: Zack Koppert <[email protected]>
1 parent e86dbce commit 9769e06

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

enforcer.py

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,11 +45,17 @@
4545
if all_repos.count == 0:
4646
print("no repos found", flush=True)
4747
for short_repository in all_repos:
48-
print("%s repo was created on %s" % (short_repository.full_name, date), flush=True)
48+
print(
49+
"%s repo was created on %s" % (short_repository.full_name, date), flush=True
50+
)
4951
# check if the repo is compatible language using short_repository.languages_url
5052
for language in short_repository.repository.languages():
5153
if language[0] in allowed_languages:
52-
print("%s repo is language compatible. Attempting to open a pull request", short_repository.full_name, flush=True)
54+
print(
55+
"%s repo is language compatible. Attempting to open a pull request",
56+
short_repository.full_name,
57+
flush=True,
58+
)
5359
# clone the repo
5460
os.system(
5561
"git clone https://%s:%[email protected]/%s"

0 commit comments

Comments
 (0)