Skip to content

Commit cfdb196

Browse files
authored
Merge pull request #168 from dknowles2/codes
Remove stray print statements
2 parents 4e7847f + f07cc02 commit cfdb196

File tree

2 files changed

+0
-3
lines changed

2 files changed

+0
-3
lines changed

pyschlage/code.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -257,7 +257,6 @@ def save(self):
257257
device_type=self._device.device_type,
258258
notification_type=ON_UNLOCK_ACTION,
259259
)
260-
print(self._notification)
261260
self._notification.filter_value = self.name
262261
self._notification.active = self.notify_on_use
263262
self._notification.save(self._device)

pyschlage/lock.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -341,8 +341,6 @@ def _get_access_codes(self) -> Iterable[AccessCode]:
341341
continue
342342
access_code_id = notification.notification_id[user_id_len + 1 :]
343343
notifications[access_code_id] = notification
344-
print("x" * 80)
345-
print(notifications)
346344
path = AccessCode.request_path(self.device_id)
347345
resp = self._auth.request("get", path)
348346
for code_json in resp.json():

0 commit comments

Comments
 (0)