Skip to content

Commit

Permalink
Fix line length.
Browse files Browse the repository at this point in the history
  • Loading branch information
BenediktBurger committed Oct 23, 2023
1 parent 3afb146 commit 0095063
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pyleco/utils/extended_publisher.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,4 +56,5 @@ def send(self, data: dict[str, Any]) -> None:
if self.full_name == "":
raise ValueError("You have to specify the sender name, before sending!")
else:
self.socket.send_multipart((self.full_name.encode(), json.dumps(data, cls=PowerEncoder)))
self.socket.send_multipart((self.full_name.encode(),
json.dumps(data, cls=PowerEncoder)))

0 comments on commit 0095063

Please sign in to comment.