[ci] Fix typing issue with aiohttp and aiosignal (#148141)

This commit is contained in:
Marc Mueller 2025-07-04 16:22:38 +02:00 committed by Franck Nijhof
parent c646658643
commit 3ffec2a655
No known key found for this signature in database
GPG Key ID: AB33ADACE7101952
2 changed files with 2 additions and 2 deletions

View File

@ -37,7 +37,7 @@ on:
type: boolean type: boolean
env: env:
CACHE_VERSION: 3 CACHE_VERSION: 4
UV_CACHE_VERSION: 1 UV_CACHE_VERSION: 1
MYPY_CACHE_VERSION: 1 MYPY_CACHE_VERSION: 1
HA_SHORT_VERSION: "2025.7" HA_SHORT_VERSION: "2025.7"

View File

@ -64,7 +64,7 @@ def setup_bans(hass: HomeAssistant, app: Application, login_threshold: int) -> N
"""Initialize bans when app starts up.""" """Initialize bans when app starts up."""
await app[KEY_BAN_MANAGER].async_load() await app[KEY_BAN_MANAGER].async_load()
app.on_startup.append(ban_startup) app.on_startup.append(ban_startup) # type: ignore[arg-type]
@middleware @middleware