# Copyright (c) PARRRATE T&V 2021. All rights reserved. from abc import ABC from bu4.linking.constructs.linked import Linked __all__ = ('LCombinatory',) class LCombinatory(Linked, ABC): pass