We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 60b626f commit b67ef76Copy full SHA for b67ef76
2 files changed
routers/core/user.py
@@ -116,6 +116,7 @@ async def update_profile(
116
117
# Handle avatar update
118
if avatar_changed:
119
+ assert avatar_file is not None
120
avatar_data = await avatar_file.read()
121
avatar_content_type = avatar_file.content_type
122
tests/browser/test_toast_display.py
@@ -8,7 +8,6 @@
8
9
Also verifies auto-dismiss (~5 s) and manual close via the X button.
10
"""
11
-import io
12
import pytest
13
from PIL import Image
14
from playwright.sync_api import Page, expect
0 commit comments