23 |
23 |
24 @param vcs reference to the git object |
24 @param vcs reference to the git object |
25 @param repodir directory name of the local repository (string) |
25 @param repodir directory name of the local repository (string) |
26 @param parent reference to the parent widget (QWidget) |
26 @param parent reference to the parent widget (QWidget) |
27 """ |
27 """ |
28 super(GitPullDialog, self).__init__(parent) |
28 super().__init__(parent) |
29 self.setupUi(self) |
29 self.setupUi(self) |
30 |
30 |
31 self.__vcs = vcs |
31 self.__vcs = vcs |
32 self.__repodir = repodir |
32 self.__repodir = repodir |
33 |
33 |