src/opera/instance/base.py
Function run
has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring. Open
Open
def run(self, operation, host: OperationHost, verbose, workdir, validate):
# TODO: Respect the timeout option.
# TODO: Add host validation.
# TODO: Properly handle SELF - not even sure what this proper way would be at this time.
actual_host = self.get_host(operation.host or host)
- 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 run_operation
has 6 arguments (exceeds 4 allowed). Consider refactoring. Open
Open
def run_operation(self,
Function run
has 5 arguments (exceeds 4 allowed). Consider refactoring. Open
Open
def run(self, operation, host: OperationHost, verbose, workdir, validate):
Function run_operation
has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring. Open
Open
def run_operation(self,
host: OperationHost,
interface: str,
operation_type: Union[StandardInterfaceOperation, ConfigureInterfaceOperation],
verbose: bool,
- 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"