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.
2 parents 1697795 + 32bdcbf commit 5bc4b3fCopy full SHA for 5bc4b3f
labelbox/data/serialization/labelbox_v1/label.py
@@ -238,7 +238,8 @@ def _has_text_annotations(self) -> bool:
238
]) > 0
239
240
def _row_contains(self, substrs) -> bool:
241
- return any([substr in self.row_data for substr in substrs])
+ lower_row_data = self.row_data.lower()
242
+ return any([substr in lower_row_data for substr in substrs])
243
244
def _is_url(self) -> bool:
245
return self.row_data.startswith(
0 commit comments