Skip to content

Commit d8c0964

Browse files
authored
Merge pull request #514 from Labelbox/jt/updateyapf
Update Setup Yapf
2 parents 8d77284 + 14393b4 commit d8c0964

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

labelbox/client.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -404,7 +404,7 @@ def _get_single(self, db_object_type, uid):
404404
else:
405405
return db_object_type(self, res)
406406

407-
def get_project(self, project_id) -> Project:
407+
def get_project(self, project_id):
408408
""" Gets a single Project with the given ID.
409409
410410
>>> project = client.get_project("<project_id>")
@@ -918,4 +918,4 @@ def get_model_run(self, model_run_id: str) -> ModelRun:
918918
Returns:
919919
A ModelRun object.
920920
"""
921-
return self._get_single(Entity.ModelRun, model_run_id)
921+
return self._get_single(Entity.ModelRun, model_run_id)

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@
2828
],
2929
extras_require={
3030
'data': [
31-
"shapely", "geojson", "numpy", "PILLOW",
32-
"opencv-python", "typeguard", "imagesize", "pyproj", "pygeotile",
31+
"shapely", "geojson", "numpy", "PILLOW", "opencv-python",
32+
"typeguard", "imagesize", "pyproj", "pygeotile",
3333
"typing-extensions", "packaging"
3434
],
3535
},

0 commit comments

Comments
 (0)