Skip to content

Commit 999772f

Browse files
committed
another Any
1 parent 6de06ef commit 999772f

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
@@ -2736,7 +2736,7 @@ def _get_stream_parameters(kind, device, channels, dtype, latency,
27362736
latency = info['default_' + latency + '_' + kind + '_latency']
27372737
if samplerate is None:
27382738
samplerate = info['default_samplerate']
2739-
parameters = _ffi.new('PaStreamParameters*', (
2739+
parameters: _t.Any = _ffi.new('PaStreamParameters*', (
27402740
device, channels, sampleformat, latency,
27412741
extra_settings._streaminfo if extra_settings else _ffi.NULL))
27422742
return parameters, dtype, samplesize, samplerate

0 commit comments

Comments
 (0)