1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-06-01 10:08:10 +00:00

Meta: Fix unused variable warning in lint-ports.py

This went undetected because I broke CI so the Python linter didn't run.
This commit is contained in:
Daniel Bertalan 2022-05-19 20:32:26 +02:00 committed by Linus Groh
parent 52710c2672
commit 830f5c610d

View file

@ -228,20 +228,17 @@ def check_descriptions_for_port_patches(patches):
patch_names = set(Path(x).stem for x in patch_files)
patches_ok = True
for patch_name in patch_names:
if patch_name not in readme_contents:
print(f"Ports/{port}/patches/{patch_name}.patch does not appear to be described in"
" the corresponding ReadMe.md")
all_good = False
patches_ok = False
for patch_name in readme_contents:
if patch_name not in patch_names:
print(f"Ports/{port}/patches/{patch_name}.patch is described in ReadMe.md, "
"but does not actually exist")
all_good = False
patches_ok = False
return all_good