Skip to content

Commit

Permalink
Fix hair pinning information to be optional (#19)
Browse files Browse the repository at this point in the history
  • Loading branch information
frenck authored Dec 1, 2021
1 parent 6e3c208 commit 116859b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tailscale/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
class ClientSupports(BaseModel):
"""Object holding Tailscale device information."""

hair_pinning: bool = Field(..., alias="hairPinning")
hair_pinning: Optional[bool] = Field(..., alias="hairPinning")
ipv6: bool
pcp: bool
pmp: bool
Expand Down

0 comments on commit 116859b

Please sign in to comment.