viniciuschiele/flask-apscheduler

View on GitHub

Showing 5 of 12 total issues

Function trigger_to_dict has a Cognitive Complexity of 25 (exceeds 5 allowed). Consider refactoring.
Open

def trigger_to_dict(trigger):
    """Converts a trigger to an OrderedDict."""

    data = OrderedDict()

Severity: Minor
Found in flask_apscheduler/utils.py - About 3 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

APScheduler has 29 functions (exceeds 20 allowed). Consider refactoring.
Open

class APScheduler(object):
    """Provides a scheduler integrated to Flask."""

    def __init__(self, scheduler=None, app=None):
        self._scheduler = scheduler or BackgroundScheduler()
Severity: Minor
Found in flask_apscheduler/scheduler.py - About 3 hrs to fix

    File scheduler.py has 279 lines of code (exceeds 250 allowed). Consider refactoring.
    Open

    # Copyright 2015 Vinicius Chiele. All rights reserved.
    #
    # Licensed under the Apache License, Version 2.0 (the "License");
    # you may not use this file except in compliance with the License.
    # You may obtain a copy of the License at
    Severity: Minor
    Found in flask_apscheduler/scheduler.py - About 2 hrs to fix

      Function pop_trigger has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
      Open

      def pop_trigger(data):
          """Pops trigger and trigger args from a given dict."""
      
          trigger_name = data.pop("trigger")
          trigger_args = {}
      Severity: Minor
      Found in flask_apscheduler/utils.py - About 35 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 _apply_auth has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
      Open

          def _apply_auth(self, view_func):
              """
              Apply decorator to authenticate the user who is making the request.
              :param view_func: The flask view func.
              """
      Severity: Minor
      Found in flask_apscheduler/scheduler.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