Skip to content

Commit

Permalink
init files
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanharvey1 committed Nov 14, 2024
1 parent a681726 commit 476674e
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 0 deletions.
2 changes: 2 additions & 0 deletions neuro_py/__init__.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ __all__ = [
"lfp",
"plotting",
"process",
"raw",
"session",
"spikes",
"stats",
Expand All @@ -22,6 +23,7 @@ from . import (
lfp,
plotting,
process,
raw,
session,
spikes,
stats,
Expand Down
4 changes: 4 additions & 0 deletions neuro_py/raw/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
import lazy_loader as _lazy

(__getattr__, __dir__, __all__) = _lazy.attach_stub(__name__, __file__)
del _lazy
3 changes: 3 additions & 0 deletions neuro_py/raw/__init__.pyi
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
__all__ = ["zero_intervals_in_file"]

from .preprocessing import zero_intervals_in_file

0 comments on commit 476674e

Please sign in to comment.