Skip to content

Commit

Permalink
fix(pre_commit): 🎨 auto format pre-commit hooks
Browse files Browse the repository at this point in the history
  • Loading branch information
pre-commit-ci[bot] committed Nov 4, 2024
1 parent d645bd8 commit 9ee1b5d
Showing 1 changed file with 20 additions and 4 deletions.
24 changes: 20 additions & 4 deletions test/utils/test_internal.py
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,15 @@ def __private_property(self):
(
Detections.empty(),
False,
{"xyxy", "class_id", "confidence", "mask", "tracker_id", "data", "metadata"},
{
"xyxy",
"class_id",
"confidence",
"mask",
"tracker_id",
"data",
"metadata",
},
DoesNotRaise(),
),
(
Expand Down Expand Up @@ -150,7 +158,7 @@ def __private_property(self):
"mask",
"tracker_id",
"data",
"metadata"
"metadata",
},
DoesNotRaise(),
),
Expand All @@ -171,14 +179,22 @@ def __private_property(self):
"mask",
"tracker_id",
"data",
"metadata"
"metadata",
},
DoesNotRaise(),
),
(
Detections.empty(),
False,
{"xyxy", "class_id", "confidence", "mask", "tracker_id", "data", "metadata"},
{
"xyxy",
"class_id",
"confidence",
"mask",
"tracker_id",
"data",
"metadata",
},
DoesNotRaise(),
),
],
Expand Down

0 comments on commit 9ee1b5d

Please sign in to comment.