--- a/eric6/Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleFixer.py Fri Apr 09 18:13:36 2021 +0200 +++ b/eric6/Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleFixer.py Fri Apr 09 18:38:01 2021 +0200 @@ -38,7 +38,7 @@ ] -class CodeStyleFixer(object): +class CodeStyleFixer: """ Class implementing a fixer for certain code style issues. """ @@ -2039,7 +2039,7 @@ return (1, "FIXW603", [], 0) -class Reindenter(object): +class Reindenter: """ Class to reindent badly-indented code to uniformly use four-space indentation. @@ -2237,7 +2237,7 @@ return i -class IndentationWrapper(object): +class IndentationWrapper: """ Class used by fixers dealing with indentation. @@ -2464,7 +2464,7 @@ return valid_indents -class LineShortener(object): +class LineShortener: """ Class used to shorten lines to a given maximum of characters. """