diff -r fd7af2312383 -r 77cf9a30562d eric6/DebugClients/Python/DebugConfig.py --- a/eric6/DebugClients/Python/DebugConfig.py Sun Apr 21 21:20:24 2019 +0200 +++ b/eric6/DebugClients/Python/DebugConfig.py Mon Apr 22 10:46:09 2019 +0200 @@ -25,14 +25,17 @@ ] BatchSize = 200 -ConfigQtNames = ('PyQt5.', 'PyQt4.', 'PySide2.', 'PySide.', 'Shiboken.') -ConfigKnownQtTypes = ('.QChar', '.QByteArray', '.QString', '.QStringList', - '.QPoint', '.QPointF', '.QRect', '.QRectF', '.QSize', '.QSizeF', '.QColor', - '.QDate', '.QTime', '.QDateTime', '.QDir', '.QFile', '.QFont', '.QUrl', - '.QModelIndex', '.QRegExp', '.QAction', '.QKeySequence', '.QDomAttr', - '.QDomCharacterData', '.QDomComment', '.QDomDocument', '.QDomElement', - '.QDomText', '.QHostAddress', '.EnumType' - ) +ConfigQtNames = ( + 'PyQt5.', 'PyQt4.', 'PySide2.', 'PySide.', 'Shiboken.' +) +ConfigKnownQtTypes = ( + '.QChar', '.QByteArray', '.QString', '.QStringList', '.QPoint', '.QPointF', + '.QRect', '.QRectF', '.QSize', '.QSizeF', '.QColor', '.QDate', '.QTime', + '.QDateTime', '.QDir', '.QFile', '.QFont', '.QUrl', '.QModelIndex', + '.QRegExp', '.QAction', '.QKeySequence', '.QDomAttr', '.QDomCharacterData', + '.QDomComment', '.QDomDocument', '.QDomElement', '.QDomText', + '.QHostAddress', '.EnumType' +) # # eflag: noqa = M702