Skip to content

Commit

Permalink
black
Browse files Browse the repository at this point in the history
  • Loading branch information
eberrigan committed Dec 19, 2024
1 parent cbf5ca8 commit c29921b
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions sleap/nn/tracking.py
Original file line number Diff line number Diff line change
Expand Up @@ -1098,9 +1098,9 @@ def get_by_name_factory_options(cls):

option = dict(name="of_window_size", default=21)
option["type"] = int
option["help"] = (
"For optical-flow: Optical flow window size to consider at each pyramid "
)
option[
"help"
] = "For optical-flow: Optical flow window size to consider at each pyramid "
"scale level"
options.append(option)

Expand All @@ -1127,9 +1127,9 @@ def int_list_func(s):

option = dict(name="kf_init_frame_count", default="0")
option["type"] = int
option["help"] = (
"For Kalman filter: Number of frames to track with other tracker. 0 means no Kalman filters will be used."
)
option[
"help"
] = "For Kalman filter: Number of frames to track with other tracker. 0 means no Kalman filters will be used."
options.append(option)

def float_list_func(s):
Expand Down

0 comments on commit c29921b

Please sign in to comment.