File: theme.py

package info (click to toggle)
python-altair 5.0.1-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 6,952 kB
  • sloc: python: 25,649; sh: 14; makefile: 5
file content (10 lines) | stat: -rw-r--r-- 221 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
"""Utilities for registering and working with themes"""

from .plugin_registry import PluginRegistry
from typing import Callable

ThemeType = Callable[..., dict]


class ThemeRegistry(PluginRegistry[ThemeType]):
    pass