We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4bbc4cf commit 690c5edCopy full SHA for 690c5ed
src/open_ephys/streaming/README.md
@@ -97,9 +97,9 @@ from open_ephys.streaming import EventListener
97
stream = EventListener(port=5557)
98
99
thread = threading.Thread(
100
- target=self.stream.start,
101
- args=(self.ttl_callback,self.spike_callback), # Arguments to the target function
102
- daemon=True # Ensures the main program doesn't exit when the thread finishes
+ target = stream.start,
+ args = (ttl_callback, spike_callback), # Arguments to the target function
+ daemon = True # Ensures the main program doesn't exit when the thread finishes
103
)
104
105
thread.start()
0 commit comments