Skip to content

Commit ec37ef5

Browse files
committed
Remove unnecessary parentheses
1 parent 60dbadd commit ec37ef5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sounddevice.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@
6363
try:
6464
_basestring = basestring
6565
except NameError:
66-
_basestring = (str, bytes)
66+
_basestring = str, bytes
6767

6868

6969
def play(data, samplerate=None, mapping=None, blocking=False, loop=False,

0 commit comments

Comments
 (0)