Files
Python-With-Gtk-Template/src/context/mixins/dummy_mixin.py

5 lines
171 B
Python
Raw Normal View History

2022-02-25 17:53:58 -06:00
class DummyMixin:
""" DummyMixin is an example of how mixins are used and structured in a project. """
def print_hello_world(self):
print("Hello, World!")