12 lines
201 B
Python
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
|