Skip to content

Commit ed16d64

Browse files
authored
Merge pull request #207 from Labelbox/sdk
Fix typo for ResourceNotFoundError
2 parents a9b5fa3 + 1beee4d commit ed16d64

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

labelbox/exceptions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ def __init__(self, db_object_type, params):
3636
db_object_type (type): A labelbox.schema.DbObject subtype.
3737
params (dict): Dict of params identifying the sought resource.
3838
"""
39-
super().__init__("Resouce '%s' not found for params: %r" %
39+
super().__init__("Resource '%s' not found for params: %r" %
4040
(db_object_type.type_name(), params))
4141
self.db_object_type = db_object_type
4242
self.params = params

0 commit comments

Comments
 (0)