(cls, config_schema)
| 263 | |
| 264 | @classmethod |
| 265 | def to_model(cls, config_schema): |
| 266 | pack = config_schema.pack |
| 267 | attributes = config_schema.attributes |
| 268 | |
| 269 | model = cls.model(pack=pack, attributes=attributes) |
| 270 | return model |
| 271 | |
| 272 | |
| 273 | class ConfigAPI(BaseAPI): |
nothing calls this directly
no outgoing calls
no test coverage detected