datalad_container/containers_add.py
Function __call__
has a Cognitive Complexity of 56 (exceeds 5 allowed). Consider refactoring. Open
Open
def __call__(name, url=None, dataset=None, call_fmt=None, image=None,
update=False, extra_input=None):
if not name:
raise InsufficientArgumentsError("`name` argument is required")
- 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 __call__
has 6 arguments (exceeds 4 allowed). Consider refactoring. Open
Open
def __call__(name, url=None, dataset=None, call_fmt=None, image=None,
Function _ensure_datalad_remote
has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring. Open
Open
def _ensure_datalad_remote(repo):
"""Initialize and enable datalad special remote if it isn't already."""
dl_remote = None
for info in repo.get_special_remotes().values():
if info.get("externaltype") == "datalad":
- 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"