--- a/eric6/Graphics/ClassItem.py Sun May 02 15:09:14 2021 +0200 +++ b/eric6/Graphics/ClassItem.py Sun May 02 15:09:29 2021 +0200 @@ -80,7 +80,7 @@ Public method to retrieve the methods of the class. @return list of class methods - @type list of str + @rtype list of str """ return self.methods[:] @@ -89,7 +89,7 @@ Public method to retrieve the attributes of the class. @return list of instance attributes - @type list of str + @rtype list of str """ return self.instanceAttributes[:] @@ -98,7 +98,7 @@ Public method to retrieve the global attributes of the class. @return list of class attributes - @type list of str + @rtype list of str """ return self.classAttributes[:]