(cls)
| 610 | |
| 611 | @lazy_attribute |
| 612 | def _global_config(cls): |
| 613 | cfg = ConfigDict() |
| 614 | cfg.meta_set('catchall', 'validate', bool) |
| 615 | return cfg |
| 616 | |
| 617 | def __init__(self, **kwargs): |
| 618 | #: A :class:`ConfigDict` for app specific configuration. |
nothing calls this directly
no test coverage detected