src/opera/instance/relationship.py
Function get_attribute
has a Cognitive Complexity of 26 (exceeds 5 allowed). Consider refactoring. Open
Open
def get_attribute(self, params):
host, attr, *rest = params
if host == OperationHost.SELF.value:
# TODO: Add support for nested attribute values once we have data type support.
- 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_property
has a Cognitive Complexity of 25 (exceeds 5 allowed). Consider refactoring. Open
Open
def get_property(self, params):
host, prop, *rest = params
if host == OperationHost.SOURCE.value:
return self.source.get_property([OperationHost.SELF.value, prop] + rest)
- 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 __init__
has 5 arguments (exceeds 4 allowed). Consider refactoring. Open
Open
def __init__(self, template, topology, instance_id, source=None, target=None):
Avoid too many return
statements within this function. Open
Open
return rel.attributes[attr].eval(self, attr)
Avoid too many return
statements within this function. Open
Open
return rel.template.properties[prop].eval(self, prop)