mirror of
https://github.com/aykhans/AzSuicideDataVisualization.git
synced 2025-04-22 02:23:48 +00:00
11 lines
221 B
Python
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
|