11 lines
195 B
Python
11 lines
195 B
Python
# Copyright (c) PARRRATE T&V 2021. All rights reserved.
|
|
|
|
from bu4.evaluation.constructs.evoid import EVoid
|
|
|
|
__all__ = ('ENull',)
|
|
|
|
|
|
class ENull(EVoid):
|
|
def __str__(self):
|
|
return f'?'
|