master
/ miniconda3 / envs / poem / lib / python3.10 / site-packages / altair / utils / theme.py

theme.py @a8e0244 raw · history · blame

"""Utilities for registering and working with themes"""

from .plugin_registry import PluginRegistry
from typing import Callable

ThemeType = Callable[..., dict]


class ThemeRegistry(PluginRegistry[ThemeType]):
    pass