Also, the deployment shows nothing under Parameter...
# prefect-ui
j
Also, the deployment shows nothing under Parameters, but then I click on Edit and I can see them
n
hi @Jeff Rose - can you share what your flow's signature looks like? i cannot reproduce this thus far
j
what does that mean?
n
Copy code
» ipython

#[1]
from prefect import flow

#[2]
@flow
def foo(x: int, y: str, z: bool = False): ...

#[3]
foo.parameters
Out[3]: ParameterSchema(title='Parameters', type='object', properties={'x': {'position': 0, 'title': 'x', 'type': 'integer'}, 'y': {'position': 1, 'title': 'y', 'type': 'string'}, 'z': {'default': False, 'position': 2, 'title': 'z', 'type': 'boolean'}}, required=['x', 'y'], definitions={})

#[4]
import inspect

#[5]
inspect.signature(foo)
Out[5]: <Signature (x: int, y: str, z: bool = False)>
my initial guess was that there might be something about your flow's parameters themselves that the UI is having a hard time with