Skip to content

Commit 1e07d7f

Browse files
authored
Missing coma in string representation of ModbusPDU (#2748)
1 parent 3029691 commit 1e07d7f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pymodbus/pdu/pdu.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ def __str__(self) -> str:
6868
f"count={self.count}, "
6969
f"bits={self.bits!s}, "
7070
f"registers={self.registers!s}, "
71-
f"status={self.status!s}"
71+
f"status={self.status!s}, "
7272
f"retries={self.retries})"
7373
)
7474

0 commit comments

Comments
 (0)