Skip to content

Commit 70a9f3b

Browse files
committed
Fix PLE1205
Signed-off-by: Joostlek <[email protected]>
1 parent a34a808 commit 70a9f3b

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

pyproject.toml

-1
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,6 @@ ignore = [
7676
"D102", # documentation info, should be removed after fixes
7777
"D103", # documentation info, should be removed after fixes
7878
"PERF102",
79-
"PLE1205",
8079
"PLR2004", # Just annoying, not really useful
8180
"PLR0912",
8281
"PLR1714",

roombapy/getpassword.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ def _get_response(self):
6969
self.log.warning("Socket timeout")
7070
return None
7171
except OSError as e:
72-
self.log.debug("Socket error", e)
72+
self.log.debug("Socket error: %s", e)
7373
return None
7474

7575

0 commit comments

Comments
 (0)