Skip to content

Commit 3ea3b44

Browse files
committed
Add comments
1 parent a55b271 commit 3ea3b44

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

Python/case_check/case_check_errors.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,12 @@
22

33

44
def error_could_not_locate(file_name, line_number, couldnt_be_located):
5+
# 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.
56
# warnings.append_mod_warning(file_name, line_number, "Could not locate", couldnt_be_located)
67
pass
78

89

910
def error_failed_to_find_module(file_name, line_number, module):
11+
# 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.
1012
# warnings.append_mod_warning(file_name, line_number, "Failed to find module", module)
1113
pass

0 commit comments

Comments
 (0)