Skip to content

Commit

Permalink
debugs
Browse files Browse the repository at this point in the history
  • Loading branch information
CodyCBakerPhD committed Jul 17, 2024
1 parent 70fa119 commit 5ac7eef
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/pynwb/ndx_microscopy/testing/_mock.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ def mock_PlanarImagingSpace(
name: Optional[str] = None,
description: str = "This is a mock instance of a PlanarImagingSpace type to be used for rapid testing.",
origin_coordinates: Tuple[float, float, float] = (-1.2, -0.6, -2),
grid_spacing_in_mm: Tuple[float, float, float] = (0.2, 0.2),
grid_spacing_in_um: Tuple[float, float, float] = (20, 20),
location: str = "The location targeted by the mock imaging space.",
reference_frame: str = "The reference frame of the mock planar imaging space.",
) -> ndx_microscopy.PlanarImagingSpace:
Expand All @@ -87,7 +87,7 @@ def mock_PlanarImagingSpace(
description=description,
microscope=microscope,
origin_coordinates=origin_coordinates,
grid_spacing_in_mm=grid_spacing_in_mm,
grid_spacing_in_um=grid_spacing_in_um,
location=location,
reference_frame=reference_frame,
)
Expand All @@ -100,7 +100,7 @@ def mock_VolumetricImagingSpace(
name: Optional[str] = None,
description: str = "This is a mock instance of a VolumetricImagingSpace type to be used for rapid testing.",
origin_coordinates: Tuple[float, float, float] = (-1.2, -0.6, -2),
grid_spacing_in_mm: Tuple[float, float, float] = (0.2, 0.2, 0.5),
grid_spacing_in_um: Tuple[float, float, float] = (20, 20, 50),
location: str = "The location targeted by the mock imaging space.",
reference_frame: str = "The reference frame of the mock volumetric imaging space.",
) -> ndx_microscopy.VolumetricImagingSpace:
Expand All @@ -109,7 +109,7 @@ def mock_VolumetricImagingSpace(
description=description,
microscope=microscope,
origin_coordinates=origin_coordinates,
grid_spacing_in_mm=grid_spacing_in_mm,
grid_spacing_in_um=grid_spacing_in_um,
location=location,
reference_frame=reference_frame,
)
Expand Down

0 comments on commit 5ac7eef

Please sign in to comment.