mirror of
https://github.com/zulip/zulip.git
synced 2025-11-11 01:16:19 +00:00
ruff: Fix PLW0120 Else clause on loop without a break statement.
Signed-off-by: Anders Kaseorg <anders@zulip.com>
This commit is contained in:
committed by
Tim Abbott
parent
f7e97b1180
commit
a6442288cf
@@ -455,8 +455,7 @@ def get_tzdata_zi() -> IO[str]:
|
|||||||
filename = os.path.join(path, "tzdata.zi")
|
filename = os.path.join(path, "tzdata.zi")
|
||||||
if os.path.exists(filename):
|
if os.path.exists(filename):
|
||||||
return open(filename)
|
return open(filename)
|
||||||
else:
|
raise RuntimeError("Missing time zone data (tzdata.zi)")
|
||||||
raise RuntimeError("Missing time zone data (tzdata.zi)")
|
|
||||||
|
|
||||||
|
|
||||||
def files_and_string_digest(filenames: Sequence[str], extra_strings: Sequence[str]) -> str:
|
def files_and_string_digest(filenames: Sequence[str], extra_strings: Sequence[str]) -> str:
|
||||||
|
|||||||
@@ -823,8 +823,7 @@ Output:
|
|||||||
|
|
||||||
[confirmation_url] = match.groups()
|
[confirmation_url] = match.groups()
|
||||||
return confirmation_url
|
return confirmation_url
|
||||||
else:
|
raise AssertionError("Couldn't find a confirmation email.")
|
||||||
raise AssertionError("Couldn't find a confirmation email.")
|
|
||||||
|
|
||||||
def encode_uuid(self, uuid: str) -> str:
|
def encode_uuid(self, uuid: str) -> str:
|
||||||
"""
|
"""
|
||||||
|
|||||||
Reference in New Issue
Block a user