Skip to content

Commit 2ce800b

Browse files
committed
Spelling
1 parent 61c5c8b commit 2ce800b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

plugwise_usb/nodes/node.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -797,7 +797,7 @@ async def set_relay(self, state: bool) -> bool:
797797
"""Change the state of the relay."""
798798
if NodeFeature.RELAY not in self._features:
799799
raise FeatureError(
800-
f"Changing relay-state is not supported for node {self.mac}"
800+
f"Changing relay state is not supported for node {self.mac}"
801801
)
802802
raise NotImplementedError()
803803

@@ -806,7 +806,7 @@ async def set_relay_lock(self, state: bool) -> bool:
806806
"""Change lock of the relay."""
807807
if NodeFeature.RELAY_LOCK not in self._features:
808808
raise FeatureError(
809-
f"Changing relay-lock state is not supported for node {self.mac}"
809+
f"Changing relay lock state is not supported for node {self.mac}"
810810
)
811811
raise NotImplementedError()
812812

0 commit comments

Comments
 (0)