Skip to content

Commit 34edc3a

Browse files
authored
fix: missing slots and api_properties for FirewallResourceLabelSelector (#492)
Fixes #491
1 parent 6a4d982 commit 34edc3a

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

hcloud/firewalls/domain.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -198,6 +198,9 @@ class FirewallResourceLabelSelector(BaseDomain):
198198
:param selector: str Target label selector
199199
"""
200200

201+
__api_properties__ = ("selector",)
202+
__slots__ = __api_properties__
203+
201204
def __init__(self, selector: str | None = None):
202205
self.selector = selector
203206

0 commit comments

Comments
 (0)