Spaces:
Paused
Paused
File size: 221 Bytes
cb1a5c9 | 1 2 3 4 5 6 7 8 9 10 11 | """Utilities for registering and working with themes"""
from .plugin_registry import PluginRegistry
from typing import Callable
ThemeType = Callable[..., dict]
class ThemeRegistry(PluginRegistry[ThemeType]):
pass
|