Skip to content

Commit 3ffec2a

Browse files
cdce8pfrenck
authored andcommitted
[ci] Fix typing issue with aiohttp and aiosignal (home-assistant#148141)
1 parent c646658 commit 3ffec2a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ on:
3737
type: boolean
3838

3939
env:
40-
CACHE_VERSION: 3
40+
CACHE_VERSION: 4
4141
UV_CACHE_VERSION: 1
4242
MYPY_CACHE_VERSION: 1
4343
HA_SHORT_VERSION: "2025.7"

homeassistant/components/http/ban.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ async def ban_startup(app: Application) -> None:
6464
"""Initialize bans when app starts up."""
6565
await app[KEY_BAN_MANAGER].async_load()
6666

67-
app.on_startup.append(ban_startup)
67+
app.on_startup.append(ban_startup) # type: ignore[arg-type]
6868

6969

7070
@middleware

0 commit comments

Comments
 (0)