talentmap_api/common/common_helpers.py
Showing 5 of 5 total issues
File common_helpers.py
has 324 lines of code (exceeds 250 allowed). Consider refactoring. Open
Open
import datetime from pydoc import locate from dateutil.relativedelta import relativedelta
Function validate_filters_exist
has a Cognitive Complexity of 11 (exceeds 7 allowed). Consider refactoring. Open
Open
def validate_filters_exist(filter_list, filter_class): for filter in filter_list.keys(): ''' The filter class (a subclass of FilterSet) passed into this function has knowledge of all implicit and declared filters. Declared filters are those explicity instantiated (typically
- Read upRead up
Function xml_etree_to_dict
has a Cognitive Complexity of 9 (exceeds 7 allowed). Consider refactoring. Open
Open
def xml_etree_to_dict(tree): ''' Converts an XML etree into a dictionary. Args:
- Read upRead up