5 lines
63 B
Python
5 lines
63 B
Python
class Currency(str):
|
|
|
|
def __str__(self) -> str:
|
|
return self
|