From 3ea3b44ddd81ab455faca4d97671d9f6cb3cb4eb Mon Sep 17 00:00:00 2001 From: MyNameIsTrez Date: Sat, 12 Mar 2022 22:52:26 +0100 Subject: [PATCH] Add comments --- Python/case_check/case_check_errors.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Python/case_check/case_check_errors.py b/Python/case_check/case_check_errors.py index 809699ea..fe4d354d 100644 --- a/Python/case_check/case_check_errors.py +++ b/Python/case_check/case_check_errors.py @@ -2,10 +2,12 @@ def error_could_not_locate(file_name, line_number, couldnt_be_located): + # This warning doesn't account for the fact that most of the time they are either in files that aren't used, or in commented out lines. # warnings.append_mod_warning(file_name, line_number, "Could not locate", couldnt_be_located) pass def error_failed_to_find_module(file_name, line_number, module): + # This warning doesn't account for the fact that most of the time they are either in files that aren't used, or in commented out lines. # warnings.append_mod_warning(file_name, line_number, "Failed to find module", module) pass \ No newline at end of file