team-10/venv/Lib/site-packages/altair/utils/theme.py

11 lines
221 B
Python
Raw Normal View History

2025-08-02 02:00:33 +02:00
"""Utilities for registering and working with themes"""
from .plugin_registry import PluginRegistry
from typing import Callable
ThemeType = Callable[..., dict]
class ThemeRegistry(PluginRegistry[ThemeType]):
pass