piccolbo/autosig

View on GitHub

Showing 4 of 4 total issues

File autosig.py has 294 lines of code (exceeds 250 allowed). Consider refactoring.
Open

"""Implementation of autosig."""
from attr import attrib, NOTHING, fields_dict, make_class
from collections import OrderedDict
from functools import wraps
from inspect import getsource, signature
Severity: Minor
Found in autosig/autosig.py - About 3 hrs to fix

    Function autosig has a Cognitive Complexity of 20 (exceeds 5 allowed). Consider refactoring.
    Open

    def autosig(sig_or_f):
        """Decorate  functions or methods to attach signatures.
    
            Use with (W) or without (WO) an argument::
    
    
    Severity: Minor
    Found in autosig/autosig.py - About 2 hrs 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 check has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
    Open

    def check(type_or_predicate, is_retval):
        """Transform a type or predicate into a autosig-friendly validator.
    
        Parameters
        ----------
    Severity: Minor
    Found in autosig/autosig.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 param has 6 arguments (exceeds 4 allowed). Consider refactoring.
    Open

    def param(
    Severity: Minor
    Found in autosig/autosig.py - About 45 mins to fix
      Severity
      Category
      Status
      Source
      Language