<@ULVA73B9P> I'm getting an error about missing pa...
# ask-marvin
r
@Marvin I'm getting an error about missing parameters even though they're keyword arguments with defaults and I've also supplied them in the parameters payload.
Copy code
prefect.exceptions.SignatureMismatchError: Function expects parameters
Example code:
Copy code
from prefect.deployments.deployments import run_deployment

run_deployment(name="example", parameters={"parameter_1": "hello", "parameter_2": None})
It's complaining about
parameter_2