Skip to content

Commit c71b9d8

Browse files
fix(pre_commit): 🎨 auto format pre-commit hooks
1 parent 0345ce8 commit c71b9d8

File tree

4 files changed

+6
-5
lines changed

4 files changed

+6
-5
lines changed

roboflow/core/version.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,17 +19,17 @@
1919
DEMO_KEYS,
2020
TYPE_CLASSICATION,
2121
TYPE_INSTANCE_SEGMENTATION,
22+
TYPE_KEYPOINT_DETECTION,
2223
TYPE_OBJECT_DETECTION,
2324
TYPE_SEMANTIC_SEGMENTATION,
24-
TYPE_KEYPOINT_DETECTION,
2525
UNIVERSE_URL,
2626
)
2727
from roboflow.core.dataset import Dataset
2828
from roboflow.models.classification import ClassificationModel
2929
from roboflow.models.instance_segmentation import InstanceSegmentationModel
30+
from roboflow.models.keypoint_detection import KeypointDetectionModel
3031
from roboflow.models.object_detection import ObjectDetectionModel
3132
from roboflow.models.semantic_segmentation import SemanticSegmentationModel
32-
from roboflow.models.keypoint_detection import KeypointDetectionModel
3333
from roboflow.util.annotations import amend_data_yaml
3434
from roboflow.util.general import write_line
3535
from roboflow.util.versions import get_wrong_dependencies_versions, print_warn_for_wrong_dependencies_versions

roboflow/models/classification.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@
88
from PIL import Image
99

1010
from roboflow.config import CLASSIFICATION_MODEL
11+
from roboflow.models.inference import InferenceModel
1112
from roboflow.util.image_utils import check_image_url
1213
from roboflow.util.prediction import PredictionGroup
13-
from roboflow.models.inference import InferenceModel
1414

1515

1616
class ClassificationModel(InferenceModel):

roboflow/models/keypoint_detection.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@
88
from PIL import Image
99

1010
from roboflow.config import CLASSIFICATION_MODEL
11+
from roboflow.models.inference import InferenceModel
1112
from roboflow.util.image_utils import check_image_url
1213
from roboflow.util.prediction import PredictionGroup
13-
from roboflow.models.inference import InferenceModel
1414

1515

1616
class KeypointDetectionModel(InferenceModel):

roboflow/roboflowpy.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,10 @@
99
from roboflow.config import APP_URL, get_conditional_configuration_variable, load_roboflow_api_key
1010
from roboflow.models.classification import ClassificationModel
1111
from roboflow.models.instance_segmentation import InstanceSegmentationModel
12+
from roboflow.models.keypoint_detection import KeypointDetectionModel
1213
from roboflow.models.object_detection import ObjectDetectionModel
1314
from roboflow.models.semantic_segmentation import SemanticSegmentationModel
14-
from roboflow.models.keypoint_detection import KeypointDetectionModel
15+
1516

1617
def login(args):
1718
roboflow.login()

0 commit comments

Comments
 (0)