Skip to content

Commit 199e99e

Browse files
committed
Fix return type
1 parent 4e3ee23 commit 199e99e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

labelbox/schema/project.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@ def get_resource_tags(self) -> List[ResourceTag]:
220220
results = self.client.execute(
221221
query_str, {"projectId": self.uid})['project']['resourceTags']
222222

223-
return [self.ResourceTag(self.client, tag) for tag in results]
223+
return [ResourceTag(self.client, tag) for tag in results]
224224

225225
def labels(self, datasets=None, order_by=None) -> PaginatedCollection:
226226
""" Custom relationship expansion method to support limited filtering.

0 commit comments

Comments
 (0)