Skip to content

Commit ec5c484

Browse files
authored
Fix typing issue in fritz (#154497)
1 parent e2c2815 commit ec5c484

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

homeassistant/components/fritz/models.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
from collections.abc import Callable
66
from dataclasses import dataclass
77
from datetime import datetime
8-
from typing import TypedDict
8+
from typing import NotRequired, TypedDict
99

1010
from homeassistant.util import dt as dt_util
1111

@@ -55,7 +55,7 @@ class Interface(TypedDict):
5555
"X_AVM-DE_Guest": bool,
5656
"X_AVM-DE_RequestClient": str,
5757
"X_AVM-DE_VPN": bool,
58-
"X_AVM-DE_WANAccess": str,
58+
"X_AVM-DE_WANAccess": NotRequired[str],
5959
"X_AVM-DE_Disallow": bool,
6060
"X_AVM-DE_IsMeshable": str,
6161
"X_AVM-DE_Priority": str,

0 commit comments

Comments
 (0)