Skip to content

Instantly share code, notes, and snippets.

@wild-endeavor
Created April 7, 2021 17:48
Show Gist options
  • Save wild-endeavor/59f3d8ac07979280a1cf1c02882fc03f to your computer and use it in GitHub Desktop.
Save wild-endeavor/59f3d8ac07979280a1cf1c02882fc03f to your computer and use it in GitHub Desktop.
ML repa 2021 Flyte demo 1
def combine_strings(a: str, b: str) -> str:
return f"{a} {b}"
def hello_world(wf_in1: str, wf_in2: str) -> str:
return combine_strings(wf_in1, wf_in2)
if __name__ == "__main__":
print(hello_world("hello", "world"))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment