Skip to content

Commit af9247d

Browse files
committed
nit
Signed-off-by: Kevin Su <pingsutw@apache.org>
1 parent ff0e56d commit af9247d

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

flytekit/core/workflow.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1517,7 +1517,6 @@ def wf(name: str = "flyteorg"):
15171517
:param default_options: Default options for the workflow when creating a default launch plan. Currently only
15181518
the labels and annotations are allowed to be set as defaults.
15191519
"""
1520-
print("in the workflowwwwww")
15211520
def wrapper(fn: Callable[P, FuncOut]) -> PythonFunctionWorkflow:
15221521
workflow_metadata = WorkflowMetadata(on_failure=failure_policy or WorkflowFailurePolicy.FAIL_IMMEDIATELY)
15231522

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,11 @@ def wf(name: str):
2222

2323

2424
if __name__ == "__main__":
25+
"""
26+
uv pip install -e . # flytekit
27+
uv pip install flyte
28+
python migrate_examples/hello.py
29+
"""
2530
import flyte
2631
flyte.init_from_config(log_level=logging.DEBUG)
2732
run = flyte.with_runcontext(log_level=logging.DEBUG).run(wf, name="flyte")

0 commit comments

Comments
 (0)