Skip to content

Commit

Permalink
[#68418] server: Change max line length in pycodestyle
Browse files Browse the repository at this point in the history
Signed-off-by: Krzysztof Sychla <[email protected]>
  • Loading branch information
ksychla committed Dec 4, 2024
1 parent 6a14cc8 commit 00775c6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/scripts.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ def pycodestyle_checks():
return_codes = list()
for f in files:
return_codes.append(subprocess.run(
['python', '-m', 'pycodestyle', f]).returncode)
['python', '-m', 'pycodestyle', '--max-line-length=100', f]).returncode)
if any([code != 0 for code in return_codes]):
raise Exception('Pycodestyle static checks failed')

Expand Down

0 comments on commit 00775c6

Please sign in to comment.