File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -1263,7 +1263,7 @@ def validate_civ_data_objects_and_execute_linked_task(
12631263 )
12641264
12651265 linked_task = execute_algorithm_job_for_inputs .signature (
1266- kwargs = {"job_pk" : self .pk }, immutable = True
1266+ kwargs = {"job_pk" : str ( self .pk ) }, immutable = True
12671267 )
12681268
12691269 return super ().validate_civ_data_objects_and_execute_linked_task (
Original file line number Diff line number Diff line change @@ -2654,9 +2654,9 @@ def _update_civ_for_image( # noqa: C901
26542654 kwargs = {
26552655 "app_label" : self ._meta .app_label ,
26562656 "model_name" : self ._meta .model_name ,
2657- "object_pk" : self .pk ,
2657+ "object_pk" : str ( self .pk ) ,
26582658 "interface_pk" : str (ci .pk ),
2659- "dicom_image_set_upload_pk" : upload .pk ,
2659+ "dicom_image_set_upload_pk" : str ( upload .pk ) ,
26602660 "linked_task" : linked_task ,
26612661 },
26622662 immutable = True ,
Original file line number Diff line number Diff line change @@ -2118,7 +2118,7 @@ def validate_civ_data_objects_and_execute_linked_task(
21182118
21192119 linked_task = check_prerequisites_for_evaluation_execution .signature (
21202120 kwargs = {
2121- "evaluation_pk" : self .pk ,
2121+ "evaluation_pk" : str ( self .pk ) ,
21222122 },
21232123 immutable = True ,
21242124 )
You can’t perform that action at this time.
0 commit comments