28 |
28 |
29 @param vcs reference to the git object |
29 @param vcs reference to the git object |
30 @param repodir directory name of the local repository (string) |
30 @param repodir directory name of the local repository (string) |
31 @param parent reference to the parent widget (QWidget) |
31 @param parent reference to the parent widget (QWidget) |
32 """ |
32 """ |
33 super(GitPushDialog, self).__init__(parent) |
33 super().__init__(parent) |
34 self.setupUi(self) |
34 self.setupUi(self) |
35 |
35 |
36 self.__vcs = vcs |
36 self.__vcs = vcs |
37 self.__repodir = repodir |
37 self.__repodir = repodir |
38 |
38 |