1df7cb8014
Copyright notice as per https://reuse.software/spec/#format-of-copyright-notices Fixes #134
9 lines
272 B
Python
9 lines
272 B
Python
# Copyright Mirage authors & contributors <https://github.com/mirukana/mirage>
|
|
# 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, ...]]
|