31 |
31 |
32 @param vcs reference to the vcs object |
32 @param vcs reference to the vcs object |
33 @param path path of the repository to serve (string) |
33 @param path path of the repository to serve (string) |
34 @param parent reference to the parent widget (QWidget) |
34 @param parent reference to the parent widget (QWidget) |
35 """ |
35 """ |
36 QMainWindow.__init__(self, parent) |
36 super().__init__(parent) |
37 |
37 |
38 self.vcs = vcs |
38 self.vcs = vcs |
39 self.__repoPath = path |
39 self.__repoPath = path |
40 |
40 |
41 self.__styles = ["paper", "coal", "gitweb", "monoblue", "spartan", ] |
41 self.__styles = ["paper", "coal", "gitweb", "monoblue", "spartan", ] |