Skip to content

Commit

Permalink
fix linting
Browse files Browse the repository at this point in the history
  • Loading branch information
ful1e5 committed Dec 21, 2023
1 parent 75c8701 commit 01a02b7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/clickgen/packer/windows.py
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ def custom_sort_key(file_path):
stem = f.stem.lower()
sreg.append(f"%10%\\%CUR_DIR%\\%{stem}%")
scur.append(f.name)
sstr.append(f'{stem}{" "*(20-len(stem))}= "{f.name}"')
sstr.append(f'{stem}{" "*(20-len(stem))}= "{f.name}"') # noqa: E226
wreg_list.extend([item for item in all_wreg if f"%{stem}%" in item])

scheme_reg = f'"{",".join(sreg)}"'
Expand Down

0 comments on commit 01a02b7

Please sign in to comment.