Skip to content

Commit

Permalink
fmt docstrings
Browse files Browse the repository at this point in the history
  • Loading branch information
pschmitt committed Nov 29, 2024
1 parent 3ff7eba commit 0d3bded
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"

[tool.ruff]
line-length = 80
line-length = 79

[tool.ruff.lint]
ignore = [
Expand Down
6 changes: 3 additions & 3 deletions roombapy/roomba.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""Python 3.* (thanks to pschmitt for adding Python 3 compatibility).
Program to connect to Roomba 980 vacuum cleaner, dcode json, and forward to mqtt
Program to connect to Roomba vacuum cleaners, dcode json, and forward to mqtt
server.
Nick Waterton 24th April 2017: V 1.0: Initial Release
Nick Waterton 4th July 2017 V 1.1.1: Fixed MQTT protocol version, and map
Expand Down Expand Up @@ -63,8 +63,8 @@ class Roomba:
The values received from the Roomba as stored in a dictionary called
master_state, and can be accessed at any time, the contents are live, and
will build with time after connection.
This is not needed if the forward to mqtt option is used, as the events will
be decoded and published on the designated mqtt client topic.
This is not needed if the forward to mqtt option is used, as the events
will be decoded and published on the designated mqtt client topic.
"""

def __init__(
Expand Down

0 comments on commit 0d3bded

Please sign in to comment.