Skip to content

Commit a294f9c

Browse files
authored
Update datetime.py
1 parent cb069cf commit a294f9c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

pymove/utils/datetime.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -623,11 +623,11 @@ def _calc_time_threshold(seg_mean: float, seg_std: float) -> float:
623623
Examples
624624
--------
625625
>>> from pymove.utils.datetime import _calc_time_threshold
626-
>>> print(_calc_time_threshold(12.3,2.1))
626+
>>> print(_calc_time_threshold(12.3, 2.1))
627627
14.4
628-
>>> print(_calc_time_threshold(1,1.5))
628+
>>> print(_calc_time_threshold(1, 1.5))
629629
2.5
630-
>>> print(_calc_time_threshold(-2,2))
630+
>>> print(_calc_time_threshold(-2, 2))
631631
0.0
632632
"""
633633
threshold = seg_std + seg_mean

0 commit comments

Comments
 (0)