Spaces:
Runtime error
Runtime error
File size: 438 Bytes
8a6cf24 |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
from typing import Any, Callable
from altair.utils import PluginRegistry
# ==============================================================================
# Vega-Lite to Vega compiler registry
# ==============================================================================
VegaLiteCompilerType = Callable[[dict[str, Any]], dict[str, Any]]
class VegaLiteCompilerRegistry(PluginRegistry[VegaLiteCompilerType, dict[str, Any]]):
pass
|