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

  1. class SubModel(object):
  2. def __init__(self):
  3. self.section_title = None
  4. class Presenter(object):
  5. def __init__(self, view, model):
  6. self.view = view
  7. self.model = model
  8. def on_selection_change(self):
  9. self.view.refresh