7 lines
86 B
Python
7 lines
86 B
Python
|
|
class NotAnObject:
|
||
|
|
def __repr__(self):
|
||
|
|
return "NAO"
|
||
|
|
|
||
|
|
|
||
|
|
NAO = NotAnObject()
|