Skip to content

Commit

Permalink
addressing comments
Browse files Browse the repository at this point in the history
  • Loading branch information
mistercrunch committed Jun 16, 2023
1 parent 0b6878c commit 58beff4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions superset/views/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -335,10 +335,10 @@ def render_app_template(self) -> FlaskResponse:

def get_environment_tag() -> dict[str, Any]:
# Whether flask is in debug mode (--debug)
debug = appbuilder.app.config.get("DEBUG")
debug = appbuilder.app.config["DEBUG"]

# Getting the configuration option for ENVIRONMENT_TAG_CONFIG
env_tag_config = appbuilder.app.config.get("ENVIRONMENT_TAG_CONFIG")
env_tag_config = appbuilder.app.config["ENVIRONMENT_TAG_CONFIG"]

# These are the predefined templates define in the config
env_tag_templates = env_tag_config.get("values")
Expand Down

0 comments on commit 58beff4

Please sign in to comment.