(meta, clsname, bases)
| 6 | class StructureMeta(type): |
| 7 | @classmethod |
| 8 | def __prepare__(meta, clsname, bases): |
| 9 | return ChainMap({}, Validator.validators) |
| 10 | |
| 11 | @staticmethod |
| 12 | def __new__(meta, name, bases, methods): |
nothing calls this directly
no outgoing calls
no test coverage detected