Showing 3 of 15 total issues
Function recipe_id
has a Cognitive Complexity of 17 (exceeds 5 allowed). Consider refactoring. Open
def recipe_id(self, request, pk):
"""
Sets the recipe for this particular calendar date and recipe id
Expects three parameters on the request body: date_num (1-31), daily_recipe_id (0 or 1), and recipe_pk
If recipe_pk is 0, that indicates this recipe item should be cleared
- Read upRead up
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 monthly_data
has a Cognitive Complexity of 12 (exceeds 5 allowed). Consider refactoring. Open
def monthly_data(self, request, pk):
"""
Creates a custom response on the API for getting monthly data, including date numbers, recipes, etc.
:param request: A full django request object
- Read upRead up
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 server_version_data
has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring. Open
def server_version_data(request):
"""
This function provides the "About" page response, including server information
:param request: An HTTP request
- Read upRead up
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"