From 71228a5b3aa3f33f39ecaa4d235856cc57fffe0b Mon Sep 17 00:00:00 2001 From: Mahdi Ben Jelloul Date: Mon, 10 Feb 2025 17:26:07 +0100 Subject: [PATCH] lint --- openfisca_tunisia/scripts/check_path_length.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openfisca_tunisia/scripts/check_path_length.py b/openfisca_tunisia/scripts/check_path_length.py index cf8b1275..213d3cb2 100644 --- a/openfisca_tunisia/scripts/check_path_length.py +++ b/openfisca_tunisia/scripts/check_path_length.py @@ -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,