src/eric7/Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/MiscellaneousChecker.py

branch
eric7
changeset 10437
2f70ca07f0af
parent 10417
c6011e501282
child 10439
21c28b0f9e41
--- a/src/eric7/Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/MiscellaneousChecker.py	Fri Dec 22 17:24:07 2023 +0100
+++ b/src/eric7/Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/MiscellaneousChecker.py	Fri Dec 22 19:45:17 2023 +0100
@@ -1240,6 +1240,7 @@
         Private function to test, if the node should be checked.
 
         @param node reference to the AST node
+        @type ast.Dict
         @return flag indicating to check the node
         @rtype bool
         """
@@ -1439,6 +1440,7 @@
             @param second second token
             @type tuple
             @return flag indicating an implicit string concatenation
+            @rtype bool
             """
             return first.type == second.type == tokenize.STRING
 
@@ -1454,6 +1456,7 @@
             @param second second token
             @type tuple
             @return flag indicating an implicit string concatenation
+            @rtype bool
             """
             return (
                 (first.type == second.type == tokenize.STRING)

eric ide

mercurial