airbnb/caravel

View on GitHub
superset/jinja_context.py

Summary

Maintainability
F
3 days
Test Coverage

File jinja_context.py has 726 lines of code (exceeds 250 allowed). Consider refactoring.
Open

# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements.  See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership.  The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
Severity: Major
Found in superset/jinja_context.py - About 1 day to fix

    Function get_time_filter has a Cognitive Complexity of 25 (exceeds 5 allowed). Consider refactoring.
    Open

        def get_time_filter(
            self,
            column: str | None = None,
            default: str | None = None,
            target_type: str | None = None,
    Severity: Minor
    Found in superset/jinja_context.py - About 3 hrs 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_filters has a Cognitive Complexity of 19 (exceeds 5 allowed). Consider refactoring.
    Open

        def get_filters(self, column: str, remove_filter: bool = False) -> list[Filter]:
            """Get the filters applied to the given column. In addition
               to returning values like the filter_values function
               the get_filters function returns the operator specified in the explorer UI.
    
    
    Severity: Minor
    Found in superset/jinja_context.py - About 2 hrs 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_context_types has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
    Open

    def validate_context_types(context: dict[str, Any]) -> dict[str, Any]:
        for key in context:
            arg_type = type(context[key]).__name__
            if arg_type not in ALLOWED_TYPES and key not in context_addons():
                if arg_type == "partial" and context[key].func.__name__ == "safe_proxy":
    Severity: Minor
    Found in superset/jinja_context.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 get_dataset_id_from_context has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
    Open

    def get_dataset_id_from_context(metric_key: str) -> int:
        """
        Retrives the Dataset ID from the request context.
    
        :param metric_key: the metric key.
    Severity: Minor
    Found in superset/jinja_context.py - About 55 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 7 arguments (exceeds 4 allowed). Consider refactoring.
    Open

        def __init__(
    Severity: Major
    Found in superset/jinja_context.py - About 50 mins to fix

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

          def __init__(  # pylint: disable=too-many-arguments
      Severity: Major
      Found in superset/jinja_context.py - About 50 mins to fix

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

            def get_time_filter(
        Severity: Minor
        Found in superset/jinja_context.py - About 35 mins to fix

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

          def dataset_macro(
          Severity: Minor
          Found in superset/jinja_context.py - About 35 mins to fix

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

                def url_param(
                    self,
                    param: str,
                    default: Optional[str] = None,
                    add_to_cache_keys: bool = True,
            Severity: Minor
            Found in superset/jinja_context.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

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

                def filter_values(
                    self, column: str, default: Optional[str] = None, remove_filter: bool = False
                ) -> list[Any]:
                    """Gets a values for a particular filter as a list
            
            
            Severity: Minor
            Found in superset/jinja_context.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

            There are no issues that match your filters.

            Category
            Status