We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e2c2815 commit ec5c484Copy full SHA for ec5c484
homeassistant/components/fritz/models.py
@@ -5,7 +5,7 @@
5
from collections.abc import Callable
6
from dataclasses import dataclass
7
from datetime import datetime
8
-from typing import TypedDict
+from typing import NotRequired, TypedDict
9
10
from homeassistant.util import dt as dt_util
11
@@ -55,7 +55,7 @@ class Interface(TypedDict):
55
"X_AVM-DE_Guest": bool,
56
"X_AVM-DE_RequestClient": str,
57
"X_AVM-DE_VPN": bool,
58
- "X_AVM-DE_WANAccess": str,
+ "X_AVM-DE_WANAccess": NotRequired[str],
59
"X_AVM-DE_Disallow": bool,
60
"X_AVM-DE_IsMeshable": str,
61
"X_AVM-DE_Priority": str,
0 commit comments