diff -r e8eb8370ea94 -r c4c17121eff8 eric6/Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/MiscellaneousChecker.py --- a/eric6/Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/MiscellaneousChecker.py Sat Jan 16 16:32:01 2021 +0100 +++ b/eric6/Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/MiscellaneousChecker.py Sat Jan 16 16:50:00 2021 +0100 @@ -28,8 +28,8 @@ @param node node to assemble call path for @type ast.Node - @return call path components - @rtype str + @yield call path components + @ytype str """ if isinstance(node, ast.Attribute): for v in composeCallPath(node.value):