src/eric7/Plugins/VcsPlugins/vcsMercurial/hg.py

branch
eric7
changeset 11148
15e30f0c76a8
parent 11109
3de1710db709
child 11218
43dfc40728d2
diff -r dee6e106b4d3 -r 15e30f0c76a8 src/eric7/Plugins/VcsPlugins/vcsMercurial/hg.py
--- a/src/eric7/Plugins/VcsPlugins/vcsMercurial/hg.py	Mon Feb 24 15:11:18 2025 +0100
+++ b/src/eric7/Plugins/VcsPlugins/vcsMercurial/hg.py	Mon Feb 24 15:43:49 2025 +0100
@@ -273,7 +273,7 @@
             self.__getExtensionsInfo()
         return hgExists, errMsg
 
-    def vcsInit(self, _vcsDir, noDialog=False):  # noqa: U100
+    def vcsInit(self, _vcsDir, noDialog=False):  # noqa: U-100
         """
         Public method used to initialize the mercurial repository.
 
@@ -317,7 +317,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 Mercurial repository.
@@ -656,7 +656,7 @@
 
         return output
 
-    def vcsUpdate(self, name=None, noDialog=False, revision=None):  # noqa: U100
+    def vcsUpdate(self, name=None, noDialog=False, revision=None):  # noqa: U-100
         """
         Public method used to update a file/directory with the Mercurial
         repository.
@@ -693,7 +693,7 @@
         self.checkVCSStatus()
         return res
 
-    def vcsAdd(self, name, isDir=False, noDialog=False):  # noqa: U100
+    def vcsAdd(self, name, isDir=False, noDialog=False):  # noqa: U-100
         """
         Public method used to add a file/directory to the Mercurial repository.
 
@@ -746,7 +746,7 @@
         """
         self.vcsAdd(path, isDir=False)
 
-    def vcsRemove(self, name, project=False, noDialog=False):  # noqa: U100
+    def vcsRemove(self, name, project=False, noDialog=False):  # noqa: U-100
         """
         Public method used to remove a file/directory from the Mercurial
         repository.
@@ -918,7 +918,7 @@
         self.summary.raise_()
         self.summary.start(mq=mq, largefiles=largefiles)
 
-    def vcsTag(self, name=None, revision=None, tagName=None):  # noqa: U100
+    def vcsTag(self, name=None, revision=None, tagName=None):  # noqa: U-100
         """
         Public method used to set/remove a tag in the Mercurial repository.
 
@@ -1032,7 +1032,7 @@
 
         return res
 
-    def vcsMerge(self, name, rev=""):  # noqa: U100
+    def vcsMerge(self, name, rev=""):  # noqa: U-100
         """
         Public method used to merge a URL/revision into the local project.
 
@@ -1180,7 +1180,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.
@@ -1323,7 +1323,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