Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
Co-authored-by: Paul Adkisson <[email protected]>
  • Loading branch information
h-mayorquin and pauladkisson authored Nov 16, 2024
1 parent 77db17a commit d775763
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,8 @@ def __init__(self, file_paths: list[FilePath], verbose: bool = False):
verbose : bool, default: False
"""
# This import is to assure that the ndx_pose is in the global namespace when an pynwb.io object is created
# This import is to assure that ndx_sound is in the global namespace when an pynwb.io object is created.
# For more detail, see https://github.com/rly/ndx-pose/issues/36
import ndx_sound # noqa: F401

suffixes = [suffix for file_path in file_paths for suffix in Path(file_path).suffixes]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,7 @@ def __init__(
controls verbosity. ``True`` by default.
"""
# This import is to assure that the ndx_pose is in the global namespace when an pynwb.io object is created
# For more detail, see https://github.com/rly/ndx-pose/issues/36
import ndx_pose # noqa: F401

from neuroconv.datainterfaces.behavior.video.video_utils import (
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,7 @@ def __init__(
Whether to print verbose output, by default True
"""
# This import is to assure that the ndx_events is in the global namespace when an pynwb.io object is created
# For more detail, see https://github.com/rly/ndx-pose/issues/36
import ndx_events # noqa: F401

if aligned_timestamp_names is None:
Expand Down

0 comments on commit d775763

Please sign in to comment.