Skip to content

Commit

Permalink
ez Unit SETTINGS and STATE from annotations to assignment
Browse files Browse the repository at this point in the history
  • Loading branch information
cboulay committed Aug 25, 2024
1 parent 9ce0503 commit ca6171c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/ezmsg/lsl/units.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,8 +68,8 @@ class LSLOutletUnit(ez.Unit):

INPUT_SIGNAL = ez.InputStream(AxisArray)

SETTINGS: LSLOutletSettings
STATE: LSLOutletState
SETTINGS = LSLOutletSettings
STATE = LSLOutletState

def initialize(self) -> None:
self._stream_created = False
Expand Down Expand Up @@ -140,8 +140,8 @@ class LSLInletUnit(ez.Unit):
stream_name: The `name` of the created LSL outlet.
stream_type: The `type` of the created LSL outlet.
"""
SETTINGS: LSLInletSettings
STATE: LSLInletState
SETTINGS = LSLInletSettings
STATE = LSLInletState

OUTPUT_SIGNAL = ez.OutputStream(AxisArray)

Expand Down

0 comments on commit ca6171c

Please sign in to comment.