Skip to content

Commit 6568b3d

Browse files
committed
formatting to make black happy
1 parent 1c56d47 commit 6568b3d

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

roboflow/models/object_detection.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@
2626
warn_for_wrong_dependencies_versions,
2727
)
2828

29+
2930
class ObjectDetectionModel:
3031
def __init__(
3132
self,
@@ -466,7 +467,9 @@ def view(button):
466467
def download(self, location=".", format="pt"):
467468
supported_formats = ["pt"]
468469
if format not in supported_formats:
469-
raise Exception(f"Unsupported format {format}. Must be one of {supported_formats}")
470+
raise Exception(
471+
f"Unsupported format {format}. Must be one of {supported_formats}"
472+
)
470473

471474
workspace, project, version = self.id.rsplit("/")
472475

0 commit comments

Comments
 (0)