Skip to content

Commit

Permalink
Make expiration_time optional, fixes #1229 (#1360)
Browse files Browse the repository at this point in the history
  • Loading branch information
iMicknl authored Sep 6, 2024
1 parent 4e8726c commit 3192dd5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyoverkiz/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -793,10 +793,10 @@ class OverkizServer:
class LocalToken:
label: str
gateway_id: str = field(repr=obfuscate_id, default=None)
expiration_time: int
gateway_creation_time: int
uuid: str
scope: str
expiration_time: int | None


@define(kw_only=True)
Expand Down

0 comments on commit 3192dd5

Please sign in to comment.