Closed jmeyers314 closed 1 year ago
I was trying to figure out how to simulate all Rubin sensors in ImSim except the guiders and came up with this snippet:
det_num: type: List items: $[i for i in range(205) if i not in [189, 190, 193, 194, 197, 198, 201, 202]] # no guiders
The Eval within the List currently produces galsim.errors.GalSimConfigError: items entry for type=List is not list-like., but is fixed on this PR.
Eval
List
galsim.errors.GalSimConfigError: items entry for type=List is not list-like.
I was trying to figure out how to simulate all Rubin sensors in ImSim except the guiders and came up with this snippet:
The
Eval
within theList
currently producesgalsim.errors.GalSimConfigError: items entry for type=List is not list-like.
, but is fixed on this PR.