spdx_tools.spdx3.model.licensing.none_license

1# SPDX-FileCopyrightText: 2023 spdx contributors
2#
3# SPDX-License-Identifier: Apache-2.0
4from spdx_tools.spdx3.model.licensing.license_field import LicenseField
5
6
7class NoneLicense(LicenseField):
8    def __init__(self):
9        pass
 8class NoneLicense(LicenseField):
 9    def __init__(self):
10        pass

Helper class that provides a standard way to create an ABC using inheritance.