Files
cardvault/cv_gtk3/signal_handlers/handlers.py
2018-02-17 15:12:59 +01:00

11 lines
254 B
Python

class Handlers:
"""
Class containing all signal handlers for the GTK GUI
"""
def __init__(self, app):
"""
Initialize handler class
:param app: reference to an CardvaultGTK object
"""
self.app = app