From 9b155ceec0666cb726776e28f7cd4a91f842e0f5 Mon Sep 17 00:00:00 2001 From: jo Date: Tue, 12 Aug 2025 15:46:51 +0200 Subject: [PATCH] refactor: add BoundModelBase model property type --- hcloud/core/client.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/hcloud/core/client.py b/hcloud/core/client.py index 9b52f368..b2f10ee1 100644 --- a/hcloud/core/client.py +++ b/hcloud/core/client.py @@ -5,6 +5,7 @@ if TYPE_CHECKING: from .._client import Client + from .domain import BaseDomain class ResourceClientBase: @@ -72,7 +73,7 @@ def __init__(self, client: Client): class BoundModelBase: """Bound Model Base""" - model: Any + model: type[BaseDomain] def __init__( self,