pivoshenko/poetry-plugin-dotenv

View on GitHub

Showing 5 of 5 total issues

Function set_as_environment_variables has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
Open

    def set_as_environment_variables(self) -> bool:
        """Load current dotenv as a system environment variable."""

        if self.dict():
            for key, value in self.dict().items():
Severity: Minor
Found in src/poetry_plugin_dotenv/dotenv/core.py - About 1 hr 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 resolve has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
Open

def resolve(
    values: Iterable[tuple[str, str]],
    *,
    override: bool,
) -> OrderedDict[str, str]:
Severity: Minor
Found in src/poetry_plugin_dotenv/dotenv/core.py - About 45 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 __init__ has 5 arguments (exceeds 4 allowed). Consider refactoring.
Open

    def __init__(
Severity: Minor
Found in src/poetry_plugin_dotenv/dotenv/core.py - About 35 mins to fix

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

    def load(
    Severity: Minor
    Found in src/poetry_plugin_dotenv/dotenv/core.py - About 35 mins to fix

      Function _apply_source_config has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
      Open

          def _apply_source_config(self, source_config: dict[str, str | bool | None]) -> None:
              """Apply source configuration to the instance."""
      
              for attribute, default_value in self.__dataclass_fields__.items():
                  source_value = source_config.get(attribute)
      Severity: Minor
      Found in src/poetry_plugin_dotenv/config.py - About 25 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