Skip to content

Commit 3c363eb

Browse files
emontnemeryfrenck
andauthored
Adjust type hints in update entity (home-assistant#129387)
* Adjust type hints in update entity * Update allowed return type of update_percentage --------- Co-authored-by: Franck Nijhof <git@frenck.dev>
1 parent 7e4432e commit 3c363eb

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed

homeassistant/components/update/__init__.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,7 @@ class UpdateEntity(
226226
_attr_installed_version: str | None = None
227227
_attr_device_class: UpdateDeviceClass | None
228228
_attr_display_precision: int
229-
_attr_in_progress: bool | int = False
229+
_attr_in_progress: bool = False
230230
_attr_latest_version: str | None = None
231231
_attr_release_summary: str | None = None
232232
_attr_release_url: str | None = None
@@ -295,7 +295,7 @@ def entity_picture(self) -> str | None:
295295
)
296296

297297
@cached_property
298-
def in_progress(self) -> bool | int | None:
298+
def in_progress(self) -> bool | None:
299299
"""Update installation progress.
300300
301301
Needs UpdateEntityFeature.PROGRESS flag to be set for it to be used.
@@ -442,7 +442,7 @@ def state_attributes(self) -> dict[str, Any] | None:
442442
in_progress = self.in_progress
443443
update_percentage = self.update_percentage if in_progress else None
444444
if type(in_progress) is not bool and isinstance(in_progress, int):
445-
update_percentage = in_progress
445+
update_percentage = in_progress # type: ignore[unreachable]
446446
in_progress = True
447447
else:
448448
in_progress = self.__in_progress

pylint/plugins/hass_enforce_type_hints.py

+5-1
Original file line numberDiff line numberDiff line change
@@ -2568,7 +2568,7 @@ class ClassTypeHintMatch:
25682568
),
25692569
TypeHintMatch(
25702570
function_name="in_progress",
2571-
return_type=["bool", "int", None],
2571+
return_type=["bool", None],
25722572
),
25732573
TypeHintMatch(
25742574
function_name="latest_version",
@@ -2590,6 +2590,10 @@ class ClassTypeHintMatch:
25902590
function_name="title",
25912591
return_type=["str", None],
25922592
),
2593+
TypeHintMatch(
2594+
function_name="update_percentage",
2595+
return_type=["int", "float", None],
2596+
),
25932597
TypeHintMatch(
25942598
function_name="install",
25952599
arg_types={1: "str | None", 2: "bool"},

0 commit comments

Comments
 (0)