Skip to content

Commit

Permalink
fix: invalid type for load balancer private network property
Browse files Browse the repository at this point in the history
  • Loading branch information
jooola committed Mar 26, 2024
1 parent d71d17f commit d64ad05
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hcloud/load_balancers/domain.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ def __init__(
id: int,
name: str | None = None,
public_net: PublicNetwork | None = None,
private_net: PrivateNet | None = None,
private_net: list[PrivateNet] | None = None,
location: BoundLocation | None = None,
algorithm: LoadBalancerAlgorithm | None = None,
services: list[LoadBalancerService] | None = None,
Expand Down

0 comments on commit d64ad05

Please sign in to comment.