Richard Sundqvist
01/15/2024, 2:28 PM{country: [cities_in_counry..]}
, I'd like like a UI widget which first lets me select a country, then one/several/all cities belonging to the chosen country.Craig Harshbarger
01/15/2024, 3:22 PMRichard Sundqvist
01/15/2024, 5:12 PMCraig Harshbarger
01/16/2024, 9:47 PMfrom prefect import flow
from enum import Enum
class Bar(str, Enum):
gratis = 'gratis'
talement = 'talement'
cro = 'cro'
ectorm = 'ectorm'
torphq = 'torphq'
organt = 'organt'
huk = 'huk'
@flow
def foo(bar: Bar = Bar.gratis):
pass
if __name__ == "__main__":
foo.serve(
name="foo",
)
Not a searchable/filterable list currently but that's on our roadmap for parameter improvementsRichard Sundqvist
01/17/2024, 8:12 AMRichard Sundqvist
01/17/2024, 8:12 AMCraig Harshbarger
01/17/2024, 2:46 PMRichard Sundqvist
01/17/2024, 3:22 PM