`PrefectException: Failed to resolve inputs in par...
# ask-community
c
`PrefectException: Failed to resolve inputs in parameter 'project'. If your parameter type is not supported, consider using the
quote
annotation to skip resolution of inputs.` anyone ever see nthis error before?
this is working in a notebook but when i start the flow from streamlit with asyncio.run() it does this
im checking the parameter in logs and everything looks fine up to the point the deployment starts
and the parameter is there as im using it earlier in the function to set other settings and write some metadata, could it be because if the asyncio.run()?
j
Do you see another exception above that in the traceback? It would be the original exception that was caught and then the
PrefectException
is raised
c
ahh i think i got it a little further past there. i had to use
from prefect.utilities.annotations import quote
and wrap in quote and now seems to be kicking off the flow
lol now im getting TypeError: object NoneType can't be used in 'await' expression but its weird, it kicked off my flow and is running correctly