ConfigMeta¶
- class lsst.pex.config.ConfigMeta(name, bases, dict_)¶
Bases:
type
A metaclass for
lsst.pex.config.Config
.- Parameters:
Notes
ConfigMeta
adds a dictionary containing allField
class attributes as a class attribute called_fields
, and adds the name of each field as an instance variable of the field itself (so you don’t have to pass the name of the field to the field constructor).Methods Summary
__call__
(*args, **kwargs)Call self as a function.
mro
(/)Return a type's method resolution order.
Methods Documentation
- __call__(*args, **kwargs)¶
Call self as a function.
- mro(/)¶
Return a type’s method resolution order.