Skip to content

Commit

Permalink
Remove stray print statements
Browse files Browse the repository at this point in the history
  • Loading branch information
dknowles2 committed Aug 12, 2024
1 parent 4e7847f commit f07cc02
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 3 deletions.
1 change: 0 additions & 1 deletion pyschlage/code.py
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,6 @@ def save(self):
device_type=self._device.device_type,
notification_type=ON_UNLOCK_ACTION,
)
print(self._notification)
self._notification.filter_value = self.name
self._notification.active = self.notify_on_use
self._notification.save(self._device)
Expand Down
2 changes: 0 additions & 2 deletions pyschlage/lock.py
Original file line number Diff line number Diff line change
Expand Up @@ -341,8 +341,6 @@ def _get_access_codes(self) -> Iterable[AccessCode]:
continue
access_code_id = notification.notification_id[user_id_len + 1 :]
notifications[access_code_id] = notification
print("x" * 80)
print(notifications)
path = AccessCode.request_path(self.device_id)
resp = self._auth.request("get", path)
for code_json in resp.json():
Expand Down

0 comments on commit f07cc02

Please sign in to comment.