Skip to content

Commit 690c5ed

Browse files
committed
Fix typo in README
1 parent 4bbc4cf commit 690c5ed

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/open_ephys/streaming/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -97,9 +97,9 @@ from open_ephys.streaming import EventListener
9797
stream = EventListener(port=5557)
9898

9999
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
100+
target = stream.start,
101+
args = (ttl_callback, spike_callback), # Arguments to the target function
102+
daemon = True # Ensures the main program doesn't exit when the thread finishes
103103
)
104104

105105
thread.start()

0 commit comments

Comments
 (0)