HomeDashboard/.venv/lib/python3.12/site-packages/nicegui/persistence/peudo_persistent_dict.py

12 lines
317 B
Python
Raw Permalink Normal View History

2026-01-03 14:54:18 +01:00
from .persistent_dict import PersistentDict
class PseudoPersistentDict(PersistentDict):
"""A persistent dict that is not actually persistent, but only keeps the data in memory (for internal use only)."""
async def initialize(self) -> None:
pass
def initialize_sync(self) -> None:
pass