(modelcls: type[Model])
| 299 | assert names |
| 300 | |
| 301 | def func(modelcls: type[Model]): |
| 302 | for name in names: |
| 303 | cls._model_classes[name] = modelcls |
| 304 | return modelcls |
| 305 | return func |
| 306 | |
| 307 | @classmethod |
nothing calls this directly
no outgoing calls
no test coverage detected