Deleted unnecessary 'returns' and 'passes'
[findit] / src / mvc / controllers / about.py
index 9082cf2..2800ba3 100755 (executable)
@@ -8,7 +8,6 @@ class AboutCtrl(Controller):
 
     def __init__(self, model):
         Controller.__init__(self, model)
-        return
 
     def register_view(self, view):
         """Loads the text taking it from the model."""
@@ -19,7 +18,6 @@ class AboutCtrl(Controller):
 #        self.view.set_authors(self.model.authors)
         self.view.set_comments(self.model.comments)
         self.view.set_license(self.model.license)
-        return
 
     # -----------------------------------------------------
     #                  user callbacks
@@ -32,5 +30,3 @@ class AboutCtrl(Controller):
     # -----------------------------------------------------
     #                observable properties
     # -----------------------------------------------------
-
-    pass # end of class