mirror of https://github.com/chriskiehl/Gooey.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
260 B
17 lines
260 B
|
|
|
|
class SubModel(object):
|
|
|
|
def __init__(self):
|
|
self.section_title = None
|
|
|
|
|
|
class Presenter(object):
|
|
def __init__(self, view, model):
|
|
self.view = view
|
|
self.model = model
|
|
|
|
|
|
def on_selection_change(self):
|
|
self.view.refresh
|
|
|