5 lines
117 B
Python
5 lines
117 B
Python
class DummyMixin:
|
|
"""docstring for DummyMixin"""
|
|
def print_hello_world(self):
|
|
print("Hello, World!")
|