in google_cloud_automlops/orchestration/kfp.py [0:0]
def _get_compile_step(self) -> str:
"""Constructs the compile function call.
Returns:
str: Compile function call.
"""
return (
f'\n'
f'compiler.Compiler().compile(\n'
f' pipeline_func={self.func_name},\n'
f' package_path=pipeline_job_spec_path)\n'
f'\n'
)