Module pipelines.rj_smtr.example.tasks
Tasks for example
Functions
def say_hello(name: str = 'World') ‑> str
-
Expand source code
@task def say_hello(name: str = "World") -> str: """ Greeting task. """ return f"Hello, {name}!"
Greeting task.