Skip to content

Commit

Permalink
TODO for mode parameter in toy_example
Browse files Browse the repository at this point in the history
  • Loading branch information
pauladkisson committed Sep 6, 2023
1 parent 957c53c commit 47eaa3d
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/roiextractors/example_datasets/toy_example.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,9 @@ def _gaussian(x, mu, sigma):
return 1 / np.sqrt(2 * np.pi * sigma) * np.exp(-((x - mu) ** 2) / sigma)


def _generate_rois(num_units=10, size_x=100, size_y=100, roi_size=4, min_dist=5, mode="uniform"):
def _generate_rois(
num_units=10, size_x=100, size_y=100, roi_size=4, min_dist=5, mode="uniform"
): # TODO: mode --> literal type
"""Generate ROIs with given parameters.
Parameters
Expand Down

0 comments on commit 47eaa3d

Please sign in to comment.