Skip to content

Commit 5d615c7

Browse files
committed
fix formatting for - handle None values in ClassifierSettings initialization
1 parent 1692489 commit 5d615c7

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/jabs_postprocess/utils/metadata.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,9 @@ def __init__(
4545
threshold_max: high threshold for calling behavior (default 1.0)
4646
"""
4747
self._behavior = behavior
48-
self._interpolate = interpolate if interpolate is not None else DEFAULT_INTERPOLATE
48+
self._interpolate = (
49+
interpolate if interpolate is not None else DEFAULT_INTERPOLATE
50+
)
4951
self._stitch = stitch if stitch is not None else DEFAULT_STITCH
5052
self._min_bout = min_bout if min_bout is not None else DEFAULT_MIN_BOUT
5153

0 commit comments

Comments
 (0)