Skip to content

Commit 94ff736

Browse files
committed
run linter
1 parent c71b9d8 commit 94ff736

File tree

3 files changed

+3
-8
lines changed

3 files changed

+3
-8
lines changed

roboflow/models/classification.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ def __init__(
4545
ClassificationModel Object
4646
"""
4747
# Instantiate different API URL parameters
48-
super(ClassificationModel, self).__init__(api_key, id, version = version)
48+
super(ClassificationModel, self).__init__(api_key, id, version=version)
4949
self.__api_key = api_key
5050
self.id = id
5151
self.name = name

roboflow/models/keypoint_detection.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ def __init__(
4343
ClassificationModel Object
4444
"""
4545
# Instantiate different API URL parameters
46-
super(KeypointDetectionModel, self).__init__(api_key, id, version = version)
46+
super(KeypointDetectionModel, self).__init__(api_key, id, version=version)
4747
self.__api_key = api_key
4848
self.id = id
4949
self.name = name

roboflow/models/video.py

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,7 @@
99
from roboflow.config import API_URL
1010
from roboflow.models.inference import InferenceModel
1111

12-
SUPPORTED_ROBOFLOW_MODELS = [
13-
"object-detection",
14-
"classification",
15-
"instance-segmentation",
16-
"keypoint-detection"
17-
]
12+
SUPPORTED_ROBOFLOW_MODELS = ["object-detection", "classification", "instance-segmentation", "keypoint-detection"]
1813

1914
SUPPORTED_ADDITIONAL_MODELS = {
2015
"clip": {

0 commit comments

Comments
 (0)