Skip to content

Commit

Permalink
ADCM-6210 Silent pyright for WithUpgrades the same way as with
Browse files Browse the repository at this point in the history
WithActions
  • Loading branch information
Sealwing committed Dec 25, 2024
1 parent 86c0f83 commit 103f342
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion adcm_aio_client/core/objects/_common.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ def config_history(self: Self) -> ConfigHistoryNode:
class WithUpgrades(WithProtectedRequester, AwareOfOwnPath):
@cached_property
def upgrades(self: Self) -> UpgradeNode:
return UpgradeNode(parent=self, path=(*self.get_own_path(), "upgrades"), requester=self._requester)
return UpgradeNode(parent=self, path=(*self.get_own_path(), "upgrades"), requester=self._requester) # type: ignore[reportTypeArgument]


class WithMaintenanceMode(WithProtectedRequester, AwareOfOwnPath):
Expand Down

0 comments on commit 103f342

Please sign in to comment.