src/eric7/Plugins/VcsPlugins/vcsGit/git.py

branch
eric7
changeset 11148
15e30f0c76a8
parent 11090
f5f5f5803935
child 11218
43dfc40728d2
--- a/src/eric7/Plugins/VcsPlugins/vcsGit/git.py	Mon Feb 24 15:11:18 2025 +0100
+++ b/src/eric7/Plugins/VcsPlugins/vcsGit/git.py	Mon Feb 24 15:43:49 2025 +0100
@@ -222,7 +222,7 @@
 
         return False, errMsg
 
-    def vcsInit(self, _vcsDir, noDialog=False):  # noqa: U100
+    def vcsInit(self, _vcsDir, noDialog=False):  # noqa: U-100
         """
         Public method used to initialize the Git repository.
 
@@ -266,7 +266,7 @@
             project.openProject(pfn)
 
     def vcsImport(
-        self, vcsDataDict, projectDir, noDialog=False, addAll=True  # noqa: U100
+        self, vcsDataDict, projectDir, noDialog=False, addAll=True  # noqa: U-100
     ):
         """
         Public method used to import the project into the Git repository.
@@ -692,7 +692,7 @@
         self.vcsAdd(path, isDir=False)
 
     def vcsRemove(
-        self, name, project=False, noDialog=False, stageOnly=False  # noqa: U100
+        self, name, project=False, noDialog=False, stageOnly=False  # noqa: U-100
     ):
         """
         Public method used to remove a file/directory from the Git
@@ -1154,7 +1154,7 @@
 
         return VersionControlState.Uncontrolled
 
-    def vcsAllRegisteredStates(self, names, dname, shortcut=True):  # noqa: U100
+    def vcsAllRegisteredStates(self, names, dname, shortcut=True):  # noqa: U-100
         """
         Public method used to get the registered states of a number of files
         in the vcs.
@@ -1318,7 +1318,7 @@
                 dia.exec()
 
     def vcsOptionsDialog(
-        self, project, _archive, editable=False, parent=None  # noqa: U100
+        self, project, _archive, editable=False, parent=None  # noqa: U-100
     ):
         """
         Public method to get a dialog to enter repository info.

eric ide

mercurial