<#5319 [Core feature] Flytekit should support `uns...
# flytekit
c
#5319 [Core feature] Flytekit should support `unsafe` mode for types Issue created by kumare3 ### Motivation: Why do you think this is important? Today for every task and workflow it is necessary for everything to be typed. It should be possible to create tasks that are
untyped
and
unsafe
optionally ### Goal: What should the final outcome look like, ideally?
Copy code
@task(unsafe=True)
def foo(x, y: int) -> typing.Any:
   ...

@task
def foo2(y: int):
   ...

@workflow(unsafe=True)
def wf(x, y: int):
   foo(x=x, y=10)
   foo1(y=y)
### Describe alternatives you've considered everything can be marked as typing.Any today, which is but a problem ### Propose: Link/Inline OR Additional context No response ### Are you sure this issue hasn't been raised already? • Yes ### Have you read the Code of Conduct? • Yes flyteorg/flyte