File tree Expand file tree Collapse file tree 5 files changed +7
-7
lines changed
Expand file tree Collapse file tree 5 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -3,4 +3,4 @@ minversion = 3.7
33log_cli =true
44python_files = test_*.py
55; pytest_plugins = ['pytest_profiling']
6- ; addopts = -n auto --dist=loadscope
6+ addopts = -n auto --dist =loadscope
Original file line number Diff line number Diff line change 33import sys
44
55
6- __version__ = "4.4.25b1 "
6+ __version__ = "4.4.25b2 "
77
88os .environ .update ({"sa_version" : __version__ })
99sys .path .append (os .path .split (os .path .realpath (__file__ ))[0 ])
Original file line number Diff line number Diff line change @@ -848,7 +848,7 @@ def execute(self):
848848 if response .error :
849849 raise response .error
850850 workflow = response .data [0 ]
851- if workflow .is_system and uploaded_annotations and not self ._keep_status :
851+ if workflow .is_system () and uploaded_annotations and not self ._keep_status :
852852 statuses_changed = set_annotation_statuses_in_progress (
853853 service_provider = self ._service_provider ,
854854 project = self ._project ,
@@ -1090,7 +1090,7 @@ def execute(self):
10901090 if not response .ok :
10911091 raise AppException (response .error )
10921092 workflow = response .data [0 ]
1093- if workflow .is_system and not self ._keep_status :
1093+ if workflow .is_system () and not self ._keep_status :
10941094 statuses_changed = set_annotation_statuses_in_progress (
10951095 service_provider = self ._service_provider ,
10961096 project = self ._project ,
Original file line number Diff line number Diff line change @@ -749,7 +749,7 @@ def __init__(
749749 if response .error :
750750 raise AppException (response .error )
751751 workflow = response .data [0 ]
752- if workflow .is_system :
752+ if workflow .is_system () :
753753 annotation_status_value = (
754754 self ._service_provider .get_annotation_status_value (
755755 self ._project , "NotStarted"
@@ -1112,7 +1112,7 @@ def execute(self):
11121112 if response .error :
11131113 raise AppException (response .error )
11141114 workflow = response .data [0 ]
1115- if workflow .is_system :
1115+ if workflow .is_system () :
11161116 self ._annotation_status_value = (
11171117 self ._service_provider .get_annotation_status_value (
11181118 self ._project , "NotStarted"
Original file line number Diff line number Diff line change @@ -100,7 +100,7 @@ def step_3_create_annotation_classes(self):
100100
101101 def step_4_upload_annotations (self ):
102102 uploaded , _ , __ = sa .upload_annotations_from_folder_to_project (
103- self .PROJECT_NAME , self .annotations_path , keep_status = True
103+ self .PROJECT_NAME , self .annotations_path
104104 )
105105 attached_items_count = len (attached_item_names .get ())
106106 assert len (uploaded ) == attached_items_count
You can’t perform that action at this time.
0 commit comments