--- a/eric6/Utilities/ClassBrowsers/pyclbr.py Fri Apr 09 18:13:36 2021 +0200 +++ b/eric6/Utilities/ClassBrowsers/pyclbr.py Fri Apr 09 18:38:01 2021 +0200 @@ -215,7 +215,7 @@ VisibilityMixin.__init__(self) -class Publics(object): +class Publics: """ Class to represent the list of public identifiers. """ @@ -236,7 +236,7 @@ for e in idents.split(',')] -class Imports(object): +class Imports: """ Class to represent the list of imported modules. """ @@ -289,7 +289,7 @@ return self.imports -class ImportedModule(object): +class ImportedModule: """ Class to represent an imported module. """