joyider/NoJoy_DI

View on GitHub

Showing 4 of 12 total issues

Function _get_data has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
Open

    def _get_data(self, myservice, req_tokens=None):
        name = object_name_standard(myservice)

        if name == self.my_service_name:
            return self
Severity: Minor
Found in NoJoy_DI/di.py - About 1 hr to fix

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 _update_input_from_signature has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
Open

    def _update_input_from_signature(self, function, types_kwargs):
        try:
            sig = signature(function)
        except ValueError:
            return
Severity: Minor
Found in NoJoy_DI/di.py - About 45 mins to fix

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 _make has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
Open

    def _make(self, svc_def, transformer):
        svc_def._locked = True

        def transform_input(types_kwargs):
            return dict([(key, transformer(value)) for key, value in types_kwargs.items()])
Severity: Minor
Found in NoJoy_DI/di.py - About 45 mins to fix

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 injector has 5 arguments (exceeds 4 allowed). Consider refactoring.
Open

    def injector(self, service=None, function=None, function_args=None,
Severity: Minor
Found in NoJoy_DI/service.py - About 35 mins to fix
    Severity
    Category
    Status
    Source
    Language