cuddly-jelly-27016
05/25/2025, 12:11 AMpyflyte run main.py workflow
The output right now to verify the undesired cast:
dict_keys([1, 2, 3])
dict_keys(['3', '1', '2'])
As suggested in the flyte slack https://flyte-org.slack.com/archives/CP2HDHKE1/p1706113015835149?thread_ts=1706105850.505019&cid=CP2HDHKE1 I've also tryied typing it as dict without the types for key/values but it still gets casted to string.
### Expected behavior
Print from the workflow should instead be:
dict_keys([1, 2, 3])
dict_keys([1, 2, 3])
### Additional context to reproduce
Run my script
### Screenshots
No response
### Are you sure this issue hasn't been raised already?
• Yes
### Have you read the Code of Conduct?
• Yes
flyteorg/flytecuddly-jelly-27016
05/25/2025, 12:11 AM