Skip to content

Commit

Permalink
fix additional imports
Browse files Browse the repository at this point in the history
  • Loading branch information
timonmerk committed Sep 20, 2024
1 parent 998dbef commit 44fd4c5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion py_neuromodulation/gui/backend/app_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from typing import Sequence
import sys
from pathlib import Path
from py_neuromodulation.nm_types import _PathLike
from py_neuromodulation.utils.types import _PathLike
from functools import lru_cache
import platform

Expand Down
4 changes: 2 additions & 2 deletions py_neuromodulation/stream/stream.py
Original file line number Diff line number Diff line change
Expand Up @@ -206,8 +206,8 @@ def run(
save_csv: bool = False,
save_interval: int = 10,
return_df: bool = True,
feature_queue: "multiprocessing.Queue" | None = None,
stream_handling_queue : "multiprocessing.Queue" | None = None,
feature_queue: "multiprocessing.Queue | None" = None,
stream_handling_queue : "multiprocessing.Queue | None" = None,
):
self.is_stream_lsl = is_stream_lsl
self.stream_lsl_name = stream_lsl_name
Expand Down

0 comments on commit 44fd4c5

Please sign in to comment.