Skip to content

Commit f227911

Browse files
authored
Merge pull request #15 from github/lint-fox
Fix lint error. No else needed.
2 parents 737ba42 + 336617b commit f227911

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cleanowners.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,8 +72,8 @@ def main(): # pragma: no cover
7272
print(f"Skipping {repo.full_name} as it does not have a CODEOWNERS file")
7373
no_codeowners_count += 1
7474
continue
75-
else:
76-
codeowners_count += 1
75+
76+
codeowners_count += 1
7777

7878
if codeowners_file_contents.content is None:
7979
# This is a large file so we need to get the sha and download based off the sha

0 commit comments

Comments
 (0)