(typ, *args, **kwargs)
| 248 | |
| 249 | |
| 250 | def apply_extensions(typ, *args, **kwargs): |
| 251 | if typ not in EXTENSION_MAP: |
| 252 | raise ValueError(f"Invalid extension type {typ}") |
| 253 | |
| 254 | return EXTENSION_MAP[typ](*args, **kwargs) |
no outgoing calls
no test coverage detected