Skip to content

Commit dcb3825

Browse files
committed
Fix f-string interpolation
1 parent 67a44ed commit dcb3825

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

infra/local/superset/docker/pythonpath/superset_config.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,9 +152,10 @@ class CeleryConfig:
152152
WEBDRIVER_BASEURL = f"http://localhost:8088{os.environ.get('SUPERSET_APP_ROOT', '')}/"
153153
# The base URL for the email report hyperlinks.
154154
WEBDRIVER_BASEURL_USER_FRIENDLY = (
155-
"https://{{ top_level_domain }}{os.environ.get('SUPERSET_APP_ROOT', '')}/"
155+
f"https://localhost:50080{os.environ.get('SUPERSET_APP_ROOT', '')}/"
156156
)
157157

158+
158159
#####
159160

160161
#####

0 commit comments

Comments
 (0)