diff -r 4ef3b78ebb4e -r c4d0cac9b5c9 eric6/Plugins/VcsPlugins/vcsMercurial/HgAnnotateDialog.py --- a/eric6/Plugins/VcsPlugins/vcsMercurial/HgAnnotateDialog.py Sat Sep 21 20:30:56 2019 +0200 +++ b/eric6/Plugins/VcsPlugins/vcsMercurial/HgAnnotateDialog.py Sat Sep 21 22:03:03 2019 +0200 @@ -12,8 +12,9 @@ import re from PyQt5.QtCore import pyqtSlot, QProcess, QTimer, Qt, QCoreApplication -from PyQt5.QtWidgets import QDialog, QDialogButtonBox, QHeaderView, \ - QLineEdit, QTreeWidgetItem +from PyQt5.QtWidgets import ( + QDialog, QDialogButtonBox, QHeaderView, QLineEdit, QTreeWidgetItem +) from E5Gui import E5MessageBox @@ -73,8 +74,10 @@ if self.__hgClient.isExecuting(): self.__hgClient.cancel() else: - if self.process is not None and \ - self.process.state() != QProcess.NotRunning: + if ( + self.process is not None and + self.process.state() != QProcess.NotRunning + ): self.process.terminate() QTimer.singleShot(2000, self.process.kill) self.process.waitForFinished(3000) @@ -149,8 +152,10 @@ Private slot called when the process finished or the user pressed the button. """ - if self.process is not None and \ - self.process.state() != QProcess.NotRunning: + if ( + self.process is not None and + self.process.state() != QProcess.NotRunning + ): self.process.terminate() QTimer.singleShot(2000, self.process.kill) self.process.waitForFinished(3000)