spdx_tools.spdx3.model.licensing.no_assertion_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 NoAssertionLicense(LicenseField):
8    def __init__(self):
9        pass
class NoAssertionLicense(spdx_tools.spdx3.model.licensing.license_field.LicenseField):
 8class NoAssertionLicense(LicenseField):
 9    def __init__(self):
10        pass

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