Skip to content

Commit b2a1eb5

Browse files
authored
fix: remove tabs
1 parent fa979cf commit b2a1eb5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

supervision/detection/core.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1029,13 +1029,13 @@ def merge(cls, detections_list: List[Detections]) -> Detections:
10291029
class_id=np.array([1, 2]),
10301030
data={'feature_vector': np.array([0.1, 0.2])}
10311031
)
1032-
1032+
10331033
detections_2 = sv.Detections(
10341034
xyxy=np.array([[30, 30, 120, 120]]),
10351035
class_id=np.array([1]),
10361036
data={'feature_vector': np.array([0.3])}
10371037
)
1038-
1038+
10391039
merged_detections = sv.Detections.merge([detections_1, detections_2])
10401040
10411041
merged_detections.xyxy

0 commit comments

Comments
 (0)