Skip to content
This repository has been archived by the owner on Jan 3, 2024. It is now read-only.

Commit

Permalink
Make all arguments to BallFilter non-optional
Browse files Browse the repository at this point in the history
  • Loading branch information
dstansby committed Apr 4, 2023
1 parent e49177b commit 843316e
Showing 1 changed file with 5 additions and 7 deletions.
12 changes: 5 additions & 7 deletions src/cellfinder_core/detect/filters/volume/ball_filter.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
from typing import Optional

import numpy as np
from numba import jit

Expand All @@ -25,11 +23,11 @@ def __init__(
layer_height: int,
ball_xy_size: int,
ball_z_size: int,
overlap_fraction: float = 0.8,
tile_step_width: Optional[int] = None,
tile_step_height: Optional[int] = None,
threshold_value: Optional[int] = None,
soma_centre_value: Optional[int] = None,
overlap_fraction: float,
tile_step_width: int,
tile_step_height: int,
threshold_value: int,
soma_centre_value: int,
):
"""
Parameters
Expand Down

0 comments on commit 843316e

Please sign in to comment.