Skip to content

Commit 2e0d505

Browse files
committed
Remove unused variable
1 parent 885f9bc commit 2e0d505

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

weechat_script_lint/script.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -369,14 +369,14 @@ def _check_hook_process_url(self) -> None:
369369
"hook_process_hashtable", r"[\"']url:"
370370
)
371371
if func_process:
372-
for line_no, m in func_process:
372+
for line_no, _ in func_process:
373373
self.message(
374374
"warning",
375375
"hook_process_url",
376376
line=line_no,
377377
)
378378
if func_process_hashtable:
379-
for line_no, m in func_process_hashtable:
379+
for line_no, _ in func_process_hashtable:
380380
self.message(
381381
"warning",
382382
"hook_process_hashtable_url",

0 commit comments

Comments
 (0)