Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion hcloud/core/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@

if TYPE_CHECKING:
from .._client import Client
from .domain import BaseDomain


class ResourceClientBase:
Expand Down Expand Up @@ -72,7 +73,7 @@ def __init__(self, client: Client):
class BoundModelBase:
"""Bound Model Base"""

model: Any
model: type[BaseDomain]

def __init__(
self,
Expand Down