Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
benjello committed Feb 10, 2025
1 parent fdaec6b commit 71228a5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion openfisca_tunisia/scripts/check_path_length.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ def extract_paths_too_long(root_dir):
maxlen = max(maxlen, len(relative_file_path))
if len(relative_file_path) > 150:
path_too_long_detected = True
logging.error(f'Path too long of {len(relative_file_path)-150} characters : {relative_file_path}')
logging.error(f'Path too long of {len(relative_file_path) - 150} characters : {relative_file_path}')
outfile.write('{} here: {}\n'.format(
len(relative_file_path),
relative_file_path,
Expand Down

0 comments on commit 71228a5

Please sign in to comment.