Skip to content

Commit 0ed3e52

Browse files
fix(pre_commit): 🎨 auto format pre-commit hooks
1 parent b91ead4 commit 0ed3e52

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

‎supervision/detection/core.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -871,7 +871,7 @@ def from_easyocr(cls, easyocr_results: list) -> Detections:
871871
"""
872872
if len(easyocr_results) == 0:
873873
return cls.empty()
874-
874+
875875
bbox = np.array([result[0] for result in easyocr_results])
876876
xyxy = np.hstack((np.min(bbox, axis=1), np.max(bbox, axis=1)))
877877

0 commit comments

Comments
 (0)