Skip to content

Commit

Permalink
oopsies
Browse files Browse the repository at this point in the history
  • Loading branch information
chuga-git committed Mar 4, 2025
1 parent 128262d commit db0c709
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions tools/ci/check_icons.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,8 @@ def check_conflicted(dmi: DMI) -> list[str]:
for dmi_path in glob("**/*.dmi", recursive=True):
dmi = DMI.from_file(dmi_path)
for check in ICON_CHECKS:
findings[dmi_path].extend(check(dmi))
if failures := check(dmi):
findings[dmi_path].extend(failures)
count += 1

if findings:
Expand All @@ -49,7 +50,7 @@ def check_conflicted(dmi: DMI) -> list[str]:
for failure in sorted(failures):
print(f"{filename}: {failure}")


print(exit_code)
end = time()
print(f"\ncheck_icons checked {count} files in {end - start:.2f}s")

Expand Down

0 comments on commit db0c709

Please sign in to comment.