Change the default required on the ArchiveQuery.
Two things:
- the
ArchiveQuery
uses{"run": "*"}
as the default values, it should use"*"
- The impl uses this
self._required = required if required else dict(run='*')
. If you pass{}
the if evaluates toFalse
and you get{"run": "*"}
instead of the wanted{}
.