Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
CodyCBakerPhD committed Jun 26, 2024
1 parent ad6b5e7 commit 8b69db4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/pynwb/ndx_microscopy/testing/_mock.py
Original file line number Diff line number Diff line change
Expand Up @@ -291,7 +291,7 @@ def mock_VolumetricMicroscopySeries(
def mock_MultiChannelMicroscopyVolume(
*,
microscope: ndx_microscopy.Microscope,
light_sources: ndx_microscopy.MicroscopyLightSource,
light_sources: List[ndx_microscopy.MicroscopyLightSource],
imaging_space: ndx_microscopy.VolumetricImagingSpace,
optical_channels: List[ndx_microscopy.MicroscopyOpticalChannel],
name: Optional[str] = None,
Expand All @@ -308,7 +308,7 @@ def mock_MultiChannelMicroscopyVolume(
name=series_name,
description=description,
microscope=microscope,
light_sources=light_source[0], # TODO: figure out how to specify list
light_sources=light_sources[0], # TODO: figure out how to specify list
imaging_space=imaging_space,
optical_channels=optical_channels[0], # TODO: figure out how to specify list
data=imaging_data,
Expand Down

0 comments on commit 8b69db4

Please sign in to comment.