--- a/eric6/DataViews/PyCoverageDialog.py Thu Sep 19 19:39:04 2019 +0200 +++ b/eric6/DataViews/PyCoverageDialog.py Sat Sep 21 13:03:17 2019 +0200 @@ -11,8 +11,10 @@ import os from PyQt5.QtCore import pyqtSlot, Qt -from PyQt5.QtWidgets import QDialog, QDialogButtonBox, QMenu, QHeaderView, \ - QTreeWidgetItem, QApplication +from PyQt5.QtWidgets import ( + QDialog, QDialogButtonBox, QMenu, QHeaderView, QTreeWidgetItem, + QApplication +) from E5Gui import E5MessageBox from E5Gui.E5Application import e5App @@ -195,8 +197,8 @@ return try: - statements, excluded, missing, readable = \ - cover.analysis2(file)[1:] + statements, excluded, missing, readable = ( + cover.analysis2(file)[1:]) readableEx = (excluded and self.__format_lines(excluded) or '') n = len(statements)