https://prefect.io logo
m

Michael Michael

07/18/2023, 7:28 AM
Hey Hey 🙂 Is it possible to add some kind of description to the flow parameters, so that for example in the Ui you can see which values are allowed. For Example: @ flow def flow_with_params(param1, param2): ...
d

Deceivious

07/18/2023, 8:31 AM
Type hints
@ flow def flow_with_params(param1:str, param2:int):
👍 1
Description; i am not sure of