Skip to content

Commit 1d30bc8

Browse files
committed
Add explicit parens around tuple (for PyPy 3.7 compatibility)
1 parent 5b55bd6 commit 1d30bc8

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
@@ -2113,7 +2113,7 @@ class default:
21132113
_pairs = 'device', 'channels', 'dtype', 'latency', 'extra_settings'
21142114
# The class attributes listed in _pairs are only provided here for static
21152115
# analysis tools and for the docs. They're overwritten in __init__().
2116-
device: ... = None, None
2116+
device: ... = (None, None)
21172117
"""Index or query string of default input/output device.
21182118
21192119
If not overwritten, this is queried from PortAudio.

0 commit comments

Comments
 (0)