12 lines
294 B
Python
12 lines
294 B
Python
# Copyright (c) PARRRATE T&V 2021. All rights reserved.
|
|
|
|
from bu4.evaluation.constructs.evaluable import Evaluable
|
|
from bu4.evaluation.constructs.evalue import EValue
|
|
|
|
__all__ = ('AVTarget',)
|
|
|
|
|
|
class AVTarget:
|
|
def given(self, value: EValue) -> Evaluable:
|
|
raise NotImplementedError
|