acoustic-carpenter-78188
05/17/2023, 6:31 PMfrom typing import Dict, Any
from flytekit import task, workflow
@task
def test(config: Dict[str, Any]) -> None:
print(config)
@workflow
def wf(config: Dict[str, Any]) -> None:
test(config=config)
pyflyte --config ~/.flyte/config-remote.yaml --verbose run --remote test.py wf --config '{"hello": "world"}'
Type
☑︎ Bug Fix
☐ Feature
☐ Plugin
Are all requirements met?
☑︎ Code completed
☑︎ Smoke tested
☑︎ Unit tests added
☐ Code documentation added
☐ Any pending items have an associated Issue
Complete description
^^^
Tracking Issue
https://flyte-org.slack.com/archives/CP2HDHKE1/p1684272325647759
Follow-up issue
NA
flyteorg/flytekit
Codecov: 71.01% (-0.21%) compared to faf02b1
✅ 29 other checks have passed
29/30 successful checksacoustic-carpenter-78188
05/18/2023, 12:48 AM