This repository has been archived on 2024-08-23. You can view files and clone it, but cannot push or open issues or pull requests.
Files
2023-07-16 13:23:25 +00:00

8 lines
118 B
Plaintext

class SomeClass(object):
@classmethod
def hello(cls):
print("It's", cls.__name__)
SomeClass.hello()