Skip to content

Commit 4f4a59a

Browse files
committed
Update examples
1 parent 7154371 commit 4f4a59a

File tree

3 files changed

+1
-4
lines changed

3 files changed

+1
-4
lines changed

examples/signalflow/01.example-signalflow-create-patch.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010
#--------------------------------------------------------------------------------
1111

1212
from isobar import *
13-
from isobar.io import SignalFlowOutputDevice
1413
from signalflow import *
1514

1615
class Ping (Patch):

examples/signalflow/02.example-signalflow-modify-patch.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010
#--------------------------------------------------------------------------------
1111

1212
from isobar import *
13-
from isobar.io import SignalFlowOutputDevice
1413
from signalflow import *
1514

1615
class Squelch (Patch):
@@ -25,7 +24,7 @@ def __init__(self, cutoff: float = 110, resonance: float = 0.8):
2524
graph = AudioGraph()
2625
output_device = SignalFlowOutputDevice(graph=graph)
2726

28-
patch = Tone()
27+
patch = Squelch()
2928
patch.play()
3029

3130
timeline = Timeline(120, output_device=output_device)

examples/signalflow/03.example-signalflow-trigger-patch.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010
#--------------------------------------------------------------------------------
1111

1212
from isobar import *
13-
from isobar.io import SignalFlowOutputDevice
1413
from signalflow import *
1514

1615
class Cymbal (Patch):

0 commit comments

Comments
 (0)