--- a/src/eric7/Plugins/CheckerPlugins/CodeStyleChecker/Security/Checks/tryExcept.py Wed Jul 13 11:16:20 2022 +0200 +++ b/src/eric7/Plugins/CheckerPlugins/CodeStyleChecker/Security/Checks/tryExcept.py Wed Jul 13 14:55:47 2022 +0200 @@ -23,7 +23,7 @@ def getChecks(): """ Public method to get a dictionary with checks handled by this module. - + @return dictionary containing checker lists containing checker function and list of codes @rtype dict @@ -39,7 +39,7 @@ def checkTryExceptPass(reportError, context, config): """ Function to check for a pass in the except block. - + @param reportError function to be used to report errors @type func @param context security context object @@ -49,19 +49,19 @@ """ checkTypedException = ( config["check_typed_exception"] - if config and "check_typed_exception" in config else - SecurityDefaults["check_typed_exception"] + if config and "check_typed_exception" in config + else SecurityDefaults["check_typed_exception"] ) - + node = context.node if len(node.body) == 1: if ( - not checkTypedException and - node.type is not None and - getattr(node.type, 'id', None) != 'Exception' + not checkTypedException + and node.type is not None + and getattr(node.type, "id", None) != "Exception" ): return - + if isinstance(node.body[0], ast.Pass): reportError( context.node.lineno - 1, @@ -75,7 +75,7 @@ def checkTryExceptContinue(reportError, context, config): """ Function to check for a continue in the except block. - + @param reportError function to be used to report errors @type func @param context security context object @@ -85,19 +85,19 @@ """ checkTypedException = ( config["check_typed_exception"] - if config and "check_typed_exception" in config else - SecurityDefaults["check_typed_exception"] + if config and "check_typed_exception" in config + else SecurityDefaults["check_typed_exception"] ) - + node = context.node if len(node.body) == 1: if ( - not checkTypedException and - node.type is not None and - getattr(node.type, 'id', None) != 'Exception' + not checkTypedException + and node.type is not None + and getattr(node.type, "id", None) != "Exception" ): return - + if isinstance(node.body[0], ast.Continue): reportError( context.node.lineno - 1,