--- a/src/eric7/Plugins/VcsPlugins/vcsPySvn/subversion.py Thu May 25 11:12:05 2023 +0200 +++ b/src/eric7/Plugins/VcsPlugins/vcsPySvn/subversion.py Thu May 25 19:51:47 2023 +0200 @@ -173,7 +173,7 @@ self.version = pysvn.svn_version[:-1] return True, "" - def vcsInit(self, vcsDir, noDialog=False): + def vcsInit(self, vcsDir, noDialog=False): # noqa: U100 """ Public method used to initialize the subversion repository. @@ -253,7 +253,9 @@ project.closeProject(noSave=True) project.openProject(pfn) - def vcsImport(self, vcsDataDict, projectDir, noDialog=False, addAll=True): + def vcsImport( + self, vcsDataDict, projectDir, noDialog=False, addAll=True # noqa: U100 + ): """ Public method used to import the project into the Subversion repository. @@ -913,7 +915,7 @@ dlg.exec() os.chdir(cwd) - def vcsRemove(self, name, project=False, noDialog=False): + def vcsRemove(self, name, project=False, noDialog=False): # noqa: U100 """ Public method used to remove a file/directory from the Subversion repository. @@ -1528,7 +1530,7 @@ else: return self.__vcsAllRegisteredStates_wc(names, dname, shortcut) - def __vcsAllRegisteredStates_wcng(self, names, dname, shortcut=True): + def __vcsAllRegisteredStates_wcng(self, names, dname, shortcut=True): # noqa: U100 """ Private method used to get the registered states of a number of files in the vcs. @@ -1689,7 +1691,7 @@ """ self.statusCache = {} - def vcsInitConfig(self, project): + def vcsInitConfig(self, project): # noqa: U100 """ Public method to initialize the VCS configuration. @@ -1765,7 +1767,9 @@ if res: dia.exec() - def vcsOptionsDialog(self, project, archive, editable=False, parent=None): + def vcsOptionsDialog( + self, project, archive, editable=False, parent=None # noqa: U100 + ): """ Public method to get a dialog to enter repository info.