diff -r 3ede487187f2 -r fab36645aa7d src/eric7/Plugins/VcsPlugins/vcsGit/git.py --- a/src/eric7/Plugins/VcsPlugins/vcsGit/git.py Mon Apr 22 15:15:36 2024 +0200 +++ b/src/eric7/Plugins/VcsPlugins/vcsGit/git.py Mon Apr 22 18:23:20 2024 +0200 @@ -222,7 +222,7 @@ return False, errMsg - def vcsInit(self, vcsDir, noDialog=False): # noqa: U100 + def vcsInit(self, _vcsDir, noDialog=False): # noqa: U100 """ Public method used to initialize the Git repository. @@ -230,7 +230,7 @@ Git controlled project. Therefore we always return TRUE without doing anything. - @param vcsDir name of the VCS directory (unused) + @param _vcsDir name of the VCS directory (unused) @type str @param noDialog flag indicating quiet operations (unused) @type bool @@ -1306,7 +1306,7 @@ """ from .GitOptionsDialog import GitOptionsDialog - return GitOptionsDialog(self, project, parent) + return GitOptionsDialog(parent) def vcsNewProjectOptionsDialog(self, parent=None): """