iterative/dvc

View on GitHub

Showing 529 of 589 total issues

Function read_param_file has 5 arguments (exceeds 4 allowed). Consider refactoring.
Open

def read_param_file(
Severity: Minor
Found in dvc/dependency/param.py - About 35 mins to fix

    Function add has 5 arguments (exceeds 4 allowed). Consider refactoring.
    Open

        def add(  # noqa: C901
    Severity: Minor
    Found in dvc/output.py - About 35 mins to fix

      Function __init__ has 5 arguments (exceeds 4 allowed). Consider refactoring.
      Open

          def __init__(self, repo, path, verify=True, **kwargs):
      Severity: Minor
      Found in dvc/dvcfile.py - About 35 mins to fix

        Function _collect_used_dir_cache has 5 arguments (exceeds 4 allowed). Consider refactoring.
        Open

            def _collect_used_dir_cache(
        Severity: Minor
        Found in dvc/output.py - About 35 mins to fix

          Function __init__ has 5 arguments (exceeds 4 allowed). Consider refactoring.
          Open

              def __init__(
          Severity: Minor
          Found in dvc/fs/git.py - About 35 mins to fix

            Function du has 5 arguments (exceeds 4 allowed). Consider refactoring.
            Open

                def du(self, path, total=True, maxdepth=None, withdirs=False, **kwargs):
            Severity: Minor
            Found in dvc/fs/dvc.py - About 35 mins to fix

              Function __init__ has 5 arguments (exceeds 4 allowed). Consider refactoring.
              Open

                  def __init__(
              Severity: Minor
              Found in dvc/fs/callbacks.py - About 35 mins to fix

                Function _info has 5 arguments (exceeds 4 allowed). Consider refactoring.
                Open

                    def _info(  # noqa: C901
                Severity: Minor
                Found in dvc/fs/dvc.py - About 35 mins to fix

                  Function dump has 5 arguments (exceeds 4 allowed). Consider refactoring.
                  Open

                      def dump(self, stage, update_pipeline=True, update_lock=True, **kwargs):
                  Severity: Minor
                  Found in dvc/dvcfile.py - About 35 mins to fix

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

                    def to_json(renderer, split: bool = False) -> list[dict]:
                        if renderer.TYPE == "vega":
                            if not renderer.datapoints:
                                return []
                            revs = renderer.get_revs()
                    Severity: Minor
                    Found in dvc/render/convert.py - About 35 mins to fix

                    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 _get_names has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
                    Open

                    def _get_names(entries: Iterable[Union["QueueEntry", "QueueDoneResult"]]):
                        names: list[str] = []
                        for entry in entries:
                            if isinstance(entry, QueueDoneResult):
                                if entry.result and entry.result.ref_info:
                    Severity: Minor
                    Found in dvc/repo/experiments/queue/remove.py - About 35 mins to fix

                    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 status has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
                    Open

                        def status(self) -> list[dict[str, Any]]:
                            """Show the status of exp tasks in queue"""
                            from datetime import datetime
                    
                            result: list[dict[str, Optional[str]]] = []
                    Severity: Minor
                    Found in dvc/repo/experiments/queue/base.py - About 35 mins to fix

                    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 logs has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
                    Open

                        def logs(self, rev: str, encoding: Optional[str] = None, follow: bool = False):
                            queue_entry: Optional[QueueEntry] = self.match_queue_entry_by_name(
                                {rev}, self.iter_active(), self.iter_done()
                            ).get(rev)
                            if queue_entry is None:
                    Severity: Minor
                    Found in dvc/repo/experiments/queue/celery.py - About 35 mins to fix

                    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 active_repo has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
                    Open

                        def active_repo(self, name: str) -> "Repo":
                            """Return a Repo for the specified active experiment if it exists."""
                            from dvc.exceptions import DvcException
                            from dvc.repo import Repo
                            from dvc.repo.experiments.exceptions import (
                    Severity: Minor
                    Found in dvc/repo/experiments/queue/base.py - About 35 mins to fix

                    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 flat_datapoints has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
                    Open

                        def flat_datapoints(self, revision: str) -> tuple[list[dict], dict]:
                            """
                            Convert the DVC Plots content to DVC Render datapoints.
                            Return both generated datapoints and updated properties.
                            """
                    Severity: Minor
                    Found in dvc/render/converter/image.py - About 35 mins to fix

                    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 _validate_args has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
                    Open

                    def _validate_args(**kwargs):
                        not_in_remote = kwargs.pop("not_in_remote", None)
                        cloud = kwargs.pop("cloud", None)
                        remote = kwargs.pop("remote", None)
                        if remote and not (cloud or not_in_remote):
                    Severity: Minor
                    Found in dvc/repo/gc.py - About 35 mins to fix

                    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 prompt has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
                    Open

                        def prompt(
                            self,
                            text: str,
                            choices: Optional[Iterable[str]] = None,
                            password: bool = False,
                    Severity: Minor
                    Found in dvc/ui/__init__.py - About 35 mins to fix

                    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 rich_table has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
                    Open

                    def rich_table(
                        ui: "Console",
                        data: TableData,
                        headers: Optional[Headers] = None,
                        pager: bool = False,
                    Severity: Minor
                    Found in dvc/ui/table.py - About 35 mins to fix

                    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 transfer has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
                    Open

                        def transfer(self, from_odb, to_odb, force=True):
                            from dvc.fs import HTTPFileSystem, LocalFileSystem
                            from dvc.fs.callbacks import TqdmCallback
                    
                            from_fs = from_odb.fs
                    Severity: Minor
                    Found in dvc/stage/cache.py - About 35 mins to fix

                    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 find_pager has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
                    Open

                    def find_pager():
                        from . import Console
                    
                        if not Console.isatty():
                            return None
                    Severity: Minor
                    Found in dvc/ui/pager.py - About 35 mins to fix

                    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

                    Severity
                    Category
                    Status
                    Source
                    Language