Skip to content

Commit 0fab683

Browse files
committed
fix: sort imports to pass ruff checks
Sort imports alphabetically (typing before numpy) to comply with ruff/isort rules.
1 parent 0de4b1b commit 0fab683

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

computer_vision/grounded_sam2_segmentation.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,10 @@
1919
Author: NANDAGOPALNG
2020
"""
2121

22-
import numpy as np
2322
from typing import Any
2423

24+
import numpy as np
25+
2526

2627
class GroundedSAM2Segmenter:
2728
"""

0 commit comments

Comments
 (0)