Skip to content

Commit b2becc2

Browse files
melifaroCopilot
andauthored
Update src/aignostics/gui/_frame.py
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
1 parent b7c59b9 commit b2becc2

1 file changed

Lines changed: 3 additions & 4 deletions

File tree

src/aignostics/gui/_frame.py

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -41,11 +41,10 @@ def get_status_page_url(api_root: str) -> str | None:
4141
"""
4242
if api_root == API_ROOT_PRODUCTION:
4343
return "https://status.platform.aignostics.com"
44-
elif api_root == API_ROOT_STAGING:
44+
if api_root == API_ROOT_STAGING:
4545
return "https://status.platform-staging.aignostics.com"
46-
else:
47-
# No status page for dev and test environments
48-
return None
46+
# No status page for dev and test environments
47+
return None
4948

5049

5150
@contextmanager

0 commit comments

Comments
 (0)