Skip to content

Commit a55b271

Browse files
committed
Remove annoying warnings that are due to the case checker not taking into account that lines can be commented out
1 parent 557495f commit a55b271

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

Python/case_check/case_check_errors.py

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

33

44
def error_could_not_locate(file_name, line_number, couldnt_be_located):
5-
warnings.append_mod_warning(file_name, line_number, "Could not locate", couldnt_be_located)
5+
# warnings.append_mod_warning(file_name, line_number, "Could not locate", couldnt_be_located)
6+
pass
67

78

89
def error_failed_to_find_module(file_name, line_number, module):
9-
warnings.append_mod_warning(file_name, line_number, "Failed to find module", module)
10+
# warnings.append_mod_warning(file_name, line_number, "Failed to find module", module)
11+
pass

0 commit comments

Comments
 (0)