18F/crime-data-api

View on GitHub
crime_data/commands.py

Summary

Maintainability
A
2 hrs
Test Coverage

Showing 4 of 4 total issues

Cyclomatic complexity is too high in function urls. (14)
Open

@click.command()
@click.option('--url',
default=None,
help='Url to test (ex. /static/image.png)')
@click.option('--order',
Severity: Minor
Found in crime_data/commands.py by radon

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

def urls(url, order):
"""Display all of the url matching routes for the project.
 
Borrowed from Flask-Script, converted to use Click.
"""
Severity: Minor
Found in crime_data/commands.py - About 2 hrs to fix

Cyclomatic complexity is too high in function lint. (6)
Open

@click.command()
@click.option('-f',
'--fix-imports',
default=False,
is_flag=True,
Severity: Minor
Found in crime_data/commands.py by radon

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

def clean():
"""Remove *.pyc and *.pyo files recursively starting at current directory.
 
Borrowed from Flask-Script, converted to use Click.
"""
Severity: Minor
Found in crime_data/commands.py - About 35 mins to fix
Category
Status