stakkr-org/stakkr

View on GitHub
stakkr/cli.py

Summary

Maintainability
A
3 hrs
Test Coverage
A
97%

Function exec_cmd has 6 arguments (exceeds 4 allowed). Consider refactoring.
Open

def exec_cmd(ctx: Context, user: str, container: str, command: tuple, tty: bool, workdir: str):
Severity: Minor
Found in stakkr/cli.py - About 45 mins to fix

    Function main has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
    Open

    def main():
        """Call the CLI Script."""
        try:
            for alias, conf in get_aliases().items():
                if conf is None:
    Severity: Minor
    Found in stakkr/cli.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 restart has 5 arguments (exceeds 4 allowed). Consider refactoring.
    Open

    def restart(ctx: Context, container: str, pull: bool, recreate: bool, proxy: bool):
    Severity: Minor
    Found in stakkr/cli.py - About 35 mins to fix

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

      def start(ctx: Context, container: str, pull: bool, recreate: bool, proxy: bool):
      Severity: Minor
      Found in stakkr/cli.py - About 35 mins to fix

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

        def run_commands(ctx: Context, extra_args: tuple, tty: bool):
            """Run commands for a specific alias"""
            commands = ctx.obj['STAKKR'].get_config()['aliases'][ctx.command.name]['exec']
            for command in commands:
                user = command['user'] if 'user' in command else 'root'
        Severity: Minor
        Found in stakkr/cli.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

        There are no issues that match your filters.

        Category
        Status