[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 GitHub
parent 8ce30d9559
commit 783102f2f6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

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

View File

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