General=sx.General(
Codegen=query[1],
OutputFormat=sx.OutputFormatEnum.root_ttree, # Fails with error
Delivery=(DeliveryEnum.LocalCache if download else sx.DeliveryEnum.URLs), # type: ignore
),
because it isn't exported from the top level. Rather you must delve quite deep into the object hierarchy. They should be exported at the top level (the way ResultFormat and ResultDesitnation were previosly.
Currently, you can't easily do something like:
because it isn't exported from the top level. Rather you must delve quite deep into the object hierarchy. They should be exported at the top level (the way
ResultFormat
andResultDesitnation
were previosly.