Showing 3 of 6 total issues
File parser.py
has 296 lines of code (exceeds 250 allowed). Consider refactoring. Open
Open
"""Flexible method to load confounds generated by fMRIprep. Authors: load_confounds team"""import numpy as np
File strategies.py
has 269 lines of code (exceeds 250 allowed). Consider refactoring. Open
Open
"""Predefined denoising strategies. Authors: load_confounds team"""import warnings
Function _sanitize_strategy
has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring. Open
Open
def _sanitize_strategy(strategy): """Defines the supported denoising strategies.""" if isinstance(strategy, list): for conf in strategy: if not conf in all_confounds:
- Read upRead up