(kind, config, unused_keys=(), **kwargs)
| 29 | |
| 30 | |
| 31 | def construct(kind, config, unused_keys=(), **kwargs): |
| 32 | return instantiate( |
| 33 | lookup(kind, config), |
| 34 | config, |
| 35 | unused_keys + ('name',), |
| 36 | **kwargs) |
| 37 | |
| 38 | |
| 39 | def instantiate(callable, config, unused_keys=(), **kwargs): |
nothing calls this directly
no test coverage detected