From b727c9806881eb57883a4ab7e4a1f5a4fc641630 Mon Sep 17 00:00:00 2001 From: Benjamin Koltermann <48812495+p4ck3t0@users.noreply.github.com> Date: Thu, 3 Oct 2024 03:14:20 +0200 Subject: [PATCH] Change floating ip label type to dict[str, str] --- hcloud/floating_ips/client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hcloud/floating_ips/client.py b/hcloud/floating_ips/client.py index 00600e4..a766914 100644 --- a/hcloud/floating_ips/client.py +++ b/hcloud/floating_ips/client.py @@ -293,7 +293,7 @@ def create( self, type: str, description: str | None = None, - labels: str | None = None, + labels: dict[str, str] | None = None, home_location: Location | BoundLocation | None = None, server: Server | BoundServer | None = None, name: str | None = None,