Skip to content

Commit 06f3ed8

Browse files
authored
fix: Misspell in data export (#2929)
1 parent 68629b0 commit 06f3ed8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

label_studio/data_export/mixins.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,9 +75,9 @@ def _get_filtered_tasks(self, tasks, task_filter_options=None):
7575
if 'finished' in task_filter_options:
7676
value = task_filter_options['finished']
7777
if value == ONLY:
78-
tasks = tasks.filter(is_labled=True)
78+
tasks = tasks.filter(is_labeled=True)
7979
elif value == EXCLUDE:
80-
tasks = tasks.exclude(is_labled=True)
80+
tasks = tasks.exclude(is_labeled=True)
8181
if 'annotated' in task_filter_options:
8282
value = task_filter_options['annotated']
8383
# if any annotation exists and is not cancelled

0 commit comments

Comments
 (0)