Hi. What should be the type annotation of `inputs`...
# ask-metaflow
p
Hi. What should be the type annotation of
inputs
for steps that join
foreach
outcomes? I have mypy complaining about it:
error: Function is missing a type annotation for one or more arguments  [no-untyped-def]
function:
Copy code
@step
def join_something(self, inputs) -> None:
    self.merge_artifacts(inputs)

    self.next(self.run_something_else)