ConfigMeta

class lsst.pex.config.ConfigMeta(name, bases, dict_)

Bases: type

A metaclass for lsst.pex.config.Config.

Notes

ConfigMeta adds a dictionary containing all Field 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.