Spaces:
Sleeping
Sleeping
text-generation-webui
/
installer_files
/env
/lib
/python3.11
/site-packages
/altair
/utils
/compiler.py
from typing import Callable | |
from altair.utils import PluginRegistry | |
# ============================================================================== | |
# Vega-Lite to Vega compiler registry | |
# ============================================================================== | |
VegaLiteCompilerType = Callable[[dict], dict] | |
class VegaLiteCompilerRegistry(PluginRegistry[VegaLiteCompilerType]): | |
pass | |