Function get_annotation_complexity
has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring. Open
def get_annotation_complexity(annotation_node, default_complexity: int = 1) -> int:
if isinstance(annotation_node, ast.Str):
try:
annotation_node = ast.parse(annotation_node.s).body[0].value # type: ignore
except (SyntaxError, IndexError):
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Function validate_annotations_in_ast_node
has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring. Open
def validate_annotations_in_ast_node(
node,
max_annotations_complexity,
max_annotations_len,
) -> List[Tuple[Any, str]]:
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Function get_annotation_len
has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring. Open
def get_annotation_len(annotation_node) -> int:
annotation_len = 0
if isinstance(annotation_node, ast.Str):
try:
annotation_node = ast.parse(annotation_node.s).body[0].value # type: ignore
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"