Skip to content

Commit

Permalink
Fix copy pasta in docstrings.
Browse files Browse the repository at this point in the history
  • Loading branch information
jaraco committed Nov 8, 2022
1 parent a2e4f8e commit eb0f028
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion tests/mock/devices/dimmer.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ def device(
low_battery=False,
no_response=False,
):
"""Dimmer mock device."""
"""Dimmer mock device."""
return dump(
id=devid,
type_tag='device_type.dimmer',
Expand Down
2 changes: 1 addition & 1 deletion tests/mock/devices/lm.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ def device(
low_battery=False,
no_response=False,
):
"""PIR mock device."""
"""LM mock device."""
return dump(
id=devid,
type_tag="device_type.lm",
Expand Down
2 changes: 1 addition & 1 deletion tests/mock/devices/unknown.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
def device(
devid=DEVICE_ID, status=CONST.STATUS_ONLINE, low_battery=False, no_response=False
):
"""Remote controller mock device."""
"""Unknown mock device."""
return dump(
id=devid,
type_tag='device_type.dead_beef',
Expand Down

0 comments on commit eb0f028

Please sign in to comment.