RaspberrySense/messenger-chatbot

View on GitHub

Showing 5 of 28 total issues

Function send_response has a Cognitive Complexity of 76 (exceeds 5 allowed). Consider refactoring.
Open

def send_response(sender_id, intent, value):
    # Temperature:
    if intent == 'get_temp':
        temp = '{:.1f}'.format(temperature.get_temperature())
        response = replies.get_sensor_reply('temperature', intent, value=temp)
Severity: Minor
Found in app.py - About 1 day 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

File replies_data.py has 292 lines of code (exceeds 250 allowed). Consider refactoring.
Open

hello = [
    'hello',
    'hey there',
    'hey',
    'hi',
Severity: Minor
Found in replies_data.py - About 3 hrs to fix

    Function webhook has a Cognitive Complexity of 16 (exceeds 5 allowed). Consider refactoring.
    Open

    def webhook():
    
        data = request.get_json()
        log(data)
    
    Severity: Minor
    Found in app.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 monitor has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
    Open

    def monitor():
        global cooldown_time
        cooldown_time -= 1 / MONITOR_RATE       # 1 second
        red.toggle()
    
    
    Severity: Minor
    Found in monitor.py - About 55 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

    Avoid deeply nested control flow statements.
    Open

                        if number_data:
                            value = number_data[0]['value']
                        send_response(sender_id, intent, value)
    Severity: Major
    Found in app.py - About 45 mins to fix
      Severity
      Category
      Status
      Source
      Language