Skip to content

Commit

Permalink
fix: change floating ip labels type to dict[str, str] (#444)
Browse files Browse the repository at this point in the history
The type for the floating ip label was wrong. Its now changed to the
type in the comments and works as expected.
  • Loading branch information
p4ck3t0 authored Oct 8, 2024
1 parent 20c32d5 commit 1f6da4e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hcloud/floating_ips/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit 1f6da4e

Please sign in to comment.