fix(pre_commit): 🎨 auto format pre-commit hooks

This commit is contained in:
pre-commit-ci[bot] 2024-11-25 20:31:44 +00:00
parent 7626c32a56
commit b7e02add30
2 changed files with 4 additions and 4 deletions

View File

@ -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"]

View File

@ -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",
]