Hello everybody
I need to pass the list of domains that I have in the database in the script parameter. I didn’t find a suitable option in the data type. I decided to use ListDomains
import arcpy
a=set()
domains = arcpy.da.ListDomains("Database Connections\sde.sde")
for dom in domains:
a.add(dom.name)
arcpy.GetParameterAsText(0)
but this option doesn't work
how do i pass a list to a script parameter?