Returns current active config.
()
| 216 | |
| 217 | |
| 218 | def config() -> Config: |
| 219 | """Returns current active config.""" |
| 220 | assert __config is not None, "__config is None. This should never happen." |
| 221 | return __config |
| 222 | |
| 223 | |
| 224 | def default_int() -> type: |
no outgoing calls
searching dependent graphs…