We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4e3ee23 commit 199e99eCopy full SHA for 199e99e
labelbox/schema/project.py
@@ -220,7 +220,7 @@ def get_resource_tags(self) -> List[ResourceTag]:
220
results = self.client.execute(
221
query_str, {"projectId": self.uid})['project']['resourceTags']
222
223
- return [self.ResourceTag(self.client, tag) for tag in results]
+ return [ResourceTag(self.client, tag) for tag in results]
224
225
def labels(self, datasets=None, order_by=None) -> PaginatedCollection:
226
""" Custom relationship expansion method to support limited filtering.
0 commit comments