mirror of
https://github.com/zulip/zulip.git
synced 2025-11-12 18:06:44 +00:00
ruff: Fix RUF059 Unpacked variable is never used.
Signed-off-by: Anders Kaseorg <anders@zulip.com>
(cherry picked from commit f24a0a6b81)
This commit is contained in:
committed by
Alex Vandiver
parent
eb9e5893a6
commit
99445ce496
@@ -10,7 +10,7 @@ def get_canonical_timezone_map() -> dict[str, str]:
|
||||
for line in f:
|
||||
fields = line.split()
|
||||
if fields and "link".startswith(fields[0].lower()): # zic(8) accepts any prefix of Link
|
||||
code, name, alias = fields
|
||||
_code, name, alias = fields
|
||||
canonical[alias] = name
|
||||
return canonical
|
||||
|
||||
|
||||
Reference in New Issue
Block a user