Files
gpt4free/venv/lib/python3.9/site-packages/altair/utils/theme.py

11 lines
221 B
Python

"""Utilities for registering and working with themes"""
from .plugin_registry import PluginRegistry
from typing import Callable
ThemeType = Callable[..., dict]
class ThemeRegistry(PluginRegistry[ThemeType]):
pass