Skip to content

Commit 1a62345

Browse files
committed
Remove unused variable
1 parent c1cfd08 commit 1a62345

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

msgcheck/msgcheck.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ def msgcheck_check_files(args):
135135
def msgcheck_display_errors(args, result):
136136
"""Display error messages."""
137137
files_ok, files_with_errors, total_errors = 0, 0, 0
138-
for filename, reports in result:
138+
for _, reports in result:
139139
if not reports:
140140
files_ok += 1
141141
continue

0 commit comments

Comments
 (0)