Skip to content

Commit 14393b4

Browse files
committed
small message to update push
1 parent e992d74 commit 14393b4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

labelbox/client.py

Lines changed: 3 additions & 3 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>")
@@ -451,7 +451,7 @@ def get_organization(self) -> Organization:
451451

452452
def _get_all(self, db_object_type, where, filter_deleted=True):
453453
""" Fetches all the objects of the given type the user has access to.
454-
454+
455455
Args:
456456
db_object_type (type): DbObject subclass.
457457
where (Comparison, LogicalOperation or None): The `where` clause
@@ -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)

0 commit comments

Comments
 (0)