From b7e02add3086b126fc70ebfd006b3bf110acb5f2 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Mon, 25 Nov 2024 20:31:44 +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/assets/__init__.py | 2 +- supervision/metrics/__init__.py | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/supervision/assets/__init__.py b/supervision/assets/__init__.py index 9af46dd9..4c48bab6 100644 --- a/supervision/assets/__init__.py +++ b/supervision/assets/__init__.py @@ -1,4 +1,4 @@ from supervision.assets.downloader import download_assets from supervision.assets.list import VideoAssets -__all__ = ["download_assets", "VideoAssets"] +__all__ = ["VideoAssets", "download_assets"] diff --git a/supervision/metrics/__init__.py b/supervision/metrics/__init__.py index 521030e9..e1cba4c1 100644 --- a/supervision/metrics/__init__.py +++ b/supervision/metrics/__init__.py @@ -22,19 +22,19 @@ from supervision.metrics.utils.object_size import ( __all__ = [ "AveragingMethod", - "Metric", - "MetricTarget", "F1Score", "F1ScoreResult", "MeanAveragePrecision", "MeanAveragePrecisionResult", "MeanAverageRecall", "MeanAverageRecallResult", + "Metric", + "MetricTarget", + "ObjectSizeCategory", "Precision", "PrecisionResult", "Recall", "RecallResult", - "ObjectSizeCategory", "get_detection_size_category", "get_object_size_category", ]