Draken007's picture
Upload 7228 files
2a0bc63 verified
raw
history blame contribute delete
221 Bytes
"""Utilities for registering and working with themes"""
from .plugin_registry import PluginRegistry
from typing import Callable
ThemeType = Callable[..., dict]
class ThemeRegistry(PluginRegistry[ThemeType]):
pass