Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
sizov-kirill committed Oct 10, 2023
1 parent 5a1c222 commit aa08825
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cvat/apps/dataset_manager/task.py
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ def _add_missing_shape(self, track, first_shape):
missing_shape = deepcopy(first_shape)
missing_shape["frame"] = track["frame"]
missing_shape["outside"] = True
missing_shape.pop("id")
missing_shape.pop("id", None)
track["shapes"].append(missing_shape)

def _correct_frame_of_tracked_shapes(self, track):
Expand Down

0 comments on commit aa08825

Please sign in to comment.