Liga-System/.venv/lib/python3.12/site-packages/nicegui/persistence/pseudo_persistent_dict.py
2026-02-16 08:18:53 +00:00

12 lines
317 B
Python

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