builtup4/bu4/combinatory/lcombinatory.py
2021-09-12 12:39:24 +03:00

12 lines
201 B
Python

# 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