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

6 lines
180 B
Python
Raw Normal View History

2022-02-25 23:53:58 +00:00
class DummyMixin:
""" DummyMixin is an example of how mixins are used and structured in a project. """
2022-09-05 23:01:39 +00:00
2022-03-25 03:11:02 +00:00
def print_hello_world(self) -> None:
2022-02-25 23:53:58 +00:00
print("Hello, World!")