Skip to content

Commit

Permalink
Fix a pydantic crash while enrolling
Browse files Browse the repository at this point in the history
  • Loading branch information
jacopotediosi committed Oct 25, 2024
1 parent f7b25eb commit a19f62c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion octoprint_mfa_totp/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
class MfaTotpUserSettings(BaseModel):
created: int
secret: str
last_used: str = None
last_used: str | None = None
active: bool = False


Expand Down

0 comments on commit a19f62c

Please sign in to comment.