Liga-System/.venv/lib/python3.12/site-packages/nicegui/persistence/pseudo_persistent_dict.py

12 lines
317 B
Python
Raw Normal View History

2026-02-16 09:18:53 +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