src/eric7/QScintilla/Editor.py

branch
eric7-maintenance
changeset 9725
b9a29a7aa820
parent 9654
7328efba128b
parent 9690
2dc33116df50
child 9832
3885b9d7bd31
equal deleted inserted replaced
9670:1f0497e16118 9725:b9a29a7aa820
6201 @type bool (optional) 6201 @type bool (optional)
6202 @param coverageFile path of the file containing the code coverage data 6202 @param coverageFile path of the file containing the code coverage data
6203 (defaults to None) 6203 (defaults to None)
6204 @type str (optional) 6204 @type str (optional)
6205 """ 6205 """
6206 from eric7.DebugClients.Python.coverage import ( # __IGNORE_WARNING_I102__ 6206 from coverage import Coverage # __IGNORE_WARNING_I102__
6207 Coverage,
6208 )
6209 6207
6210 self.__codeCoverageHideAnnotations() 6208 self.__codeCoverageHideAnnotations()
6211 6209
6212 fn = coverageFile if bool(coverageFile) else self.__getCodeCoverageFile() 6210 fn = coverageFile if bool(coverageFile) else self.__getCodeCoverageFile()
6213 self.__coverageFile = fn 6211 self.__coverageFile = fn

eric ide

mercurial