From 61809f9329c40a4d2941c532f397cb6317d0ee2b Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Wed, 18 Oct 2023 13:53:25 +0000 Subject: [PATCH] =?UTF-8?q?fix(pre=5Fcommit):=20=F0=9F=8E=A8=20auto=20form?= =?UTF-8?q?at=20pre-commit=20hooks?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- supervision/annotators/dot_marker_annotator.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/supervision/annotators/dot_marker_annotator.py b/supervision/annotators/dot_marker_annotator.py index 4f931b5f..ecdb9af0 100644 --- a/supervision/annotators/dot_marker_annotator.py +++ b/supervision/annotators/dot_marker_annotator.py @@ -1,9 +1,10 @@ from typing import Union -import numpy as np -import cv2 -from supervision import Color, ColorPalette, Position, Detections -from supervision.annotators.base import BaseAnnotator +import cv2 +import numpy as np + +from supervision import Color, ColorPalette, Detections, Position +from supervision.annotators.base import BaseAnnotator class DotMarkerAnnotator(BaseAnnotator): @@ -43,4 +44,3 @@ class DotMarkerAnnotator(BaseAnnotator): return self.color[detection.track_id % len(self.color)] else: raise ValueError("Invalid color mapping strategy") -