6 lines
180 B
Python
6 lines
180 B
Python
class DummyMixin:
|
|
""" DummyMixin is an example of how mixins are used and structured in a project. """
|
|
|
|
def print_hello_world(self) -> None:
|
|
print("Hello, World!")
|