Skip to content

Commit

Permalink
Update testing.py types (#324)
Browse files Browse the repository at this point in the history
  • Loading branch information
bendichter authored May 13, 2024
1 parent f85b31a commit 969f056
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/roiextractors/testing.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"""Testing utilities for the roiextractors package."""

from collections.abc import Iterable
from typing import Tuple, Optional
from typing import Tuple, Optional, List

import numpy as np
from numpy.testing import assert_array_equal, assert_array_almost_equal
Expand Down Expand Up @@ -52,9 +52,9 @@ def generate_dummy_imaging_extractor(
num_rows: int = 10,
num_columns: int = 10,
num_channels: int = 1,
sampling_frequency: float = 30,
sampling_frequency: float = 30.0,
dtype: DtypeType = "uint16",
channel_names: Optional[list] = None,
channel_names: Optional[List[str]] = None,
):
"""Generate a dummy imaging extractor for testing.
Expand Down

0 comments on commit 969f056

Please sign in to comment.