Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion devolo_home_control_api/backend/mprm_websocket.py
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ def _on_close(self, *_: Any) -> None:

def _on_error(self, ws: websocket.WebSocketApp, error: Exception) -> None:
"""React on errors. We will try reconnecting with prolonging intervals."""
self._logger.exception(error)
self._logger.error(error)
self._connected = False
self._reachable = False
ws.close()
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ ignore_missing_imports = true

[tool.ruff]
line-length = 127
lint.ignore = ["ANN401", "B024", "COM812", "D203", "D205", "D212", "EM", "FBT001", "N818", "TCH", "TRY300", "TRY400"]
lint.ignore = ["ANN401", "B024", "COM812", "CPY001", "D203", "D205", "D212", "EM", "FBT001", "N818", "TCH", "TRY300", "TRY400"]
lint.select = ["ALL"]
target-version = "py39"

Expand Down
Loading