--- a/eric6/Plugins/CheckerPlugins/CodeStyleChecker/Simplify/translations.py Sat Apr 10 12:34:29 2021 +0200 +++ b/eric6/Plugins/CheckerPlugins/CodeStyleChecker/Simplify/translations.py Sat Apr 10 13:02:08 2021 +0200 @@ -76,6 +76,9 @@ "Y120": QCoreApplication.translate( "SimplifyChecker", '''Use "class {0}:" instead of "class {0}(object):"'''), + "Y121": QCoreApplication.translate( + "SimplifyChecker", + '''Use "class {0}({1}):" instead of "class {0}({1}, object):"'''), # Python-specifics not part of flake8-simplify "Y181": QCoreApplication.translate( @@ -157,6 +160,7 @@ "Y118": ["foo", "bar_dict"], "Y119": ["Foo"], "Y120": ["Foo"], + "Y121": ["FooBar", "Foo"], # Python-specifics not part of flake8-simplify "Y181": ["foo += 42", "foo = foo + 42"],