Jessica Smith
06/02/2022, 4:53 PMKevin Kho
Parameter
part of the code and re-registered and it still shows? Did you re-register?Jessica Smith
06/02/2022, 6:25 PMKevin Kho
Jessica Smith
06/02/2022, 7:03 PMKevin Kho
Jessica Smith
06/13/2022, 2:08 PMKevin Kho
from prefect import Flow, task, Parameter
@task
def abc(x, y):
return 1
with Flow("parameter-test") as flow:
x = Parameter("x", 2)
y = Parameter("y", 2)
abc(x,y)
registered it and ran it. I then re-registered without y
and the UI seems to show things properly. Do you have any advice how to reproduce?Jessica Smith
06/15/2022, 11:46 AM