moment/src/backend/models/__init__.py
miruka 9990fecc74 Begin yet another model refactor
Use native ListModel which require a lot of changes, but should be
much faster than the old way which exponentially slowed down to a crawl.
Also fix some popup bugs (leave/forget).

Not working yet: side pane keyboard controls, proper highlight,
room & member filtering, local echo replacement
2020-01-06 03:41:14 -04:00

8 lines
188 B
Python

# SPDX-License-Identifier: LGPL-3.0-or-later
"""Provide classes related to data models shared between Python and QML."""
from typing import Tuple, Union
SyncId = Union[str, Tuple[str]]