--- a/eric6/Plugins/CheckerPlugins/SyntaxChecker/pyflakes/translations.py Mon Sep 09 18:52:08 2019 +0200 +++ b/eric6/Plugins/CheckerPlugins/SyntaxChecker/pyflakes/translations.py Thu Oct 03 11:12:10 2019 +0200 @@ -7,7 +7,6 @@ Module implementing message translations for pyflakes warning messages. """ -from __future__ import unicode_literals from PyQt5.QtCore import QCoreApplication @@ -137,5 +136,5 @@ return msg.format(*message_args) else: return QCoreApplication.translate( - "pyFlakes", "no message defined for code '{0}'")\ - .format(message_id) + "pyFlakes", "no message defined for code '{0}'" + ).format(message_id)