This PR makes it possible to pass None as a plugin to a Chain([...]), Mix([...]), or Pedalboard([...]) without crashing or throwing exceptions at processing time. None acts as a dummy pass-through plugin, imparting no latency and passing input directly to output.
This PR makes it possible to pass
None
as a plugin to aChain([...])
,Mix([...])
, orPedalboard([...])
without crashing or throwing exceptions at processing time.None
acts as a dummy pass-through plugin, imparting no latency and passing input directly to output.