Skip to content

Commit

Permalink
cleaned
Browse files Browse the repository at this point in the history
  • Loading branch information
sronilsson committed Feb 21, 2024
1 parent e60ac00 commit a80acb9
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion simba/mixins/geometry_mixin.py
Original file line number Diff line number Diff line change
Expand Up @@ -3013,7 +3013,10 @@ def cumsum_coord_geometries(
accepted_types=np.ndarray,
)
if (data.shape[1] != 2) or (data.ndim != 2):
raise CountError(msg=f"A N x 2 array is required (got {data.shape})", source=self.__class__.__name__, )
raise CountError(
msg=f"A N x 2 array is required (got {data.shape})",
source=self.__class__.__name__,
)
check_int(name="fps", value=fps, min_value=1)
check_int(name="core_cnt", value=core_cnt, min_value=-1)
if core_cnt == -1:
Expand Down

0 comments on commit a80acb9

Please sign in to comment.