I'm getting mypy errors for the following ```retur...
# python
b
I'm getting mypy errors for the following
Copy code
return pulumi.Output.all(bucket.bucket, obj.key).apply(
    lambda args: f"<https://s3.amazonaws.com/{args[0]}/{args[1]}>"
)
mypy states:
Copy code
Argument 1 to "all" of "Output" has incompatible type "Output[str]"; expected "Union[<nothing>, Awaitable[<nothing>], Output[<nothing>]]"
Argument 2 to "all" of "Output" has incompatible type "Output[str]"; expected "Union[<nothing>, Awaitable[<nothing>], Output[<nothing>]]"
Anyone see this before?
c
I'm also seeing this error. was this ever resolved?