EmmellaBeatrice/store-manager

View on GitHub

Showing 5 of 10 total issues

Function create_product has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
Open

def create_product():
    # Creates a new product
    data = request.get_json()
    product_name = data.get("product_name")
    price = data.get("price")
Severity: Minor
Found in api/views.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 signup has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
Open

def signup():
    user_data = request.get_json()
    username = user_data.get("username")
    email = user_data.get("email")
    password = user_data.get("password")
Severity: Minor
Found in api/views.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 create_sale_record has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
Open

def create_sale_record():
    """ Creates a new sale record"""
    data = request.get_json()
    product_id = data.get("product_id")
    user_id = data.get("user_id")
Severity: Minor
Found in api/views.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 create_sales has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
Open

    def create_sales(self, product_id, user_id, quantity):
        response = None

        product_exists = """
                SELECT price, quantity FROM products WHERE product_id = '{}'
Severity: Minor
Found in api/models.py - About 25 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 login has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
Open

def login():
    login_data = request.get_json()
    username = login_data.get("username")
    password = login_data.get("password")
    response = None
Severity: Minor
Found in api/views.py - About 25 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

Severity
Category
Status
Source
Language