diff --git a/packages/syft/src/syft/service/code/user_code_service.py b/packages/syft/src/syft/service/code/user_code_service.py index d1f76b2e317..41aba58575b 100644 --- a/packages/syft/src/syft/service/code/user_code_service.py +++ b/packages/syft/src/syft/service/code/user_code_service.py @@ -278,7 +278,7 @@ def _get_or_submit_user_code( return Ok(user_code) else: # code: SubmitUserCode # Submit new UserCode, or get existing UserCode with the same code hash - user_code_or_err = self._submit(context, code, exists_ok=True) + user_code_or_err = self._submit(context, code, exists_ok=True) # type: ignore return user_code_or_err @service_method(