11 lines
254 B
Python
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
|