Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix some bad type annotations #82

Merged
merged 1 commit into from
Aug 9, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions pyschlage/lock.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,13 +43,13 @@ class Lock(Mutable):
is_jammed: bool | None = False
"""Whether the lock has identified itself as jammed or None if lock is unavailable."""

beeper_enabled: bool | None = False
beeper_enabled: bool = False
"""Whether the keypress beep is enabled."""

lock_and_leave_enabled: bool | None = False
lock_and_leave_enabled: bool = False
"""Whether lock-and-leave (a.k.a. "1-Touch Locking) feature is enabled."""

auto_lock_time: int | None = None
auto_lock_time: int = 0
"""Time (in seconds) after which the lock will automatically lock itself."""

firmware_version: str | None = None
Expand Down