Skip to content

Commit 3e08296

Browse files
[PATCH] Applied changes as discussed in review (- WIP #348 -)
Changes in file multicast/send.py: * added a premptive comma
1 parent 13fbb31 commit 3e08296

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

multicast/send.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -357,7 +357,7 @@ def doStep(self, *args, **kwargs):
357357
# Read configured amount of bytes at a time - matches read size by default
358358
# skipcq: PYL-W0212
359359
chunk = sys.stdin.read(
360-
multicast._MCAST_DEFAULT_BUFFER_SIZE # skipcq: PYL-W0212 - module ok
360+
multicast._MCAST_DEFAULT_BUFFER_SIZE, # skipcq: PYL-W0212 - module ok
361361
)
362362
except IOError as e:
363363
print(f"Error reading from stdin: {e}", file=sys.stderr)

0 commit comments

Comments
 (0)