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