fix: missed return statement

This commit is contained in:
QuentinN42
2022-02-03 21:08:53 +01:00
parent 3601817dd2
commit 46a12a83a8

View File

@@ -119,3 +119,5 @@ def show_all_problems(all_problems, args_format, no_warn):
for file, problem in all_problems.items():
curr_level = show_problems(problem, file, args_format, no_warn)
max_level = max(curr_level, max_level)
return max_level