Skip to content

Commit f033875

Browse files
committed
remove unused type hint
1 parent def05be commit f033875

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/evohomeasync/entities.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ def temperature_status(self) -> EvoTemperatureStatusResponseT:
143143
def temperature(self) -> float | None:
144144
if not (status := self.temperature_status) or not status["is_available"]:
145145
return None
146-
return status["temperature"] # type: ignore[reportTypedDictNotRequiredAccess]
146+
return status["temperature"]
147147

148148
async def _set_dhw(
149149
self,

0 commit comments

Comments
 (0)