requirements: Upgrade Python requirements.

Signed-off-by: Anders Kaseorg <anders@zulip.com>
This commit is contained in:
Anders Kaseorg
2025-06-24 19:20:54 -07:00
committed by Tim Abbott
parent cdbe2d157f
commit 162a0980c0
7 changed files with 839 additions and 836 deletions

View File

@@ -31,7 +31,7 @@ MAX_EMOJI_GIF_FILE_SIZE_BYTES = 128 * 1024 # 128 kb
@dataclass(frozen=True)
class BaseThumbnailFormat:
class BaseThumbnailFormat: # noqa: PLW1641
extension: str
max_width: int
max_height: int

View File

@@ -570,7 +570,7 @@ def check_string_or_int(var_name: str, val: object) -> str | int:
@dataclass(eq=False)
class WildValue:
class WildValue: # noqa: PLW1641
var_name: str
value: object