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