Skip to content

Commit 7611eb5

Browse files
[PATCH] Apply changes from review (- WIP PR #323 -)
Changes in file tests/MulticastUDPClient.py: * removed redundant `str()`
1 parent 7770002 commit 7611eb5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/MulticastUDPClient.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@
123123
try:
124124
import random
125125
except ImportError as baton: # pragma: no branch
126-
raise ModuleNotFoundError(baton, str("[CWE-758] Test module failed to randomize.")) from baton
126+
raise ModuleNotFoundError("[CWE-758] Test module failed to randomize.") from baton
127127

128128

129129
class MCastClient(object): # skipcq: PYL-R0205

0 commit comments

Comments
 (0)