Add SPDX ID LGPL v3+ license headers

This commit is contained in:
miruka
2019-12-19 07:46:16 -04:00
parent d3ee39bf7b
commit fb1f9c62e5
142 changed files with 284 additions and 0 deletions

View File

@@ -1,3 +1,5 @@
# SPDX-License-Identifier: LGPL-3.0-or-later
"""Provide classes related to data models shared between Python and QML."""
from typing import Tuple, Type, Union

View File

@@ -1,3 +1,5 @@
# SPDX-License-Identifier: LGPL-3.0-or-later
"""`ModelItem` subclasses definitions."""
import asyncio

View File

@@ -1,3 +1,5 @@
# SPDX-License-Identifier: LGPL-3.0-or-later
import logging as log
import time
from threading import Lock, Thread

View File

@@ -1,3 +1,5 @@
# SPDX-License-Identifier: LGPL-3.0-or-later
from typing import Any, Dict, Optional
from ..utils import serialize_value_for_qml

View File

@@ -1,3 +1,5 @@
# SPDX-License-Identifier: LGPL-3.0-or-later
from collections import UserDict
from dataclasses import dataclass, field
from typing import Dict