From 44e4fe63df9671e46d6fccc781a55a85fba9305b Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Fri, 24 Apr 2026 16:18:34 +0000 Subject: [PATCH] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- studio/backend/routes/data_recipe/seed.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/studio/backend/routes/data_recipe/seed.py b/studio/backend/routes/data_recipe/seed.py index a296e38515..91cf718e6e 100644 --- a/studio/backend/routes/data_recipe/seed.py +++ b/studio/backend/routes/data_recipe/seed.py @@ -637,7 +637,5 @@ def get_github_env_token_status() -> dict: The value is never returned; the UI uses this to tell the user they can leave the token field blank. """ - has_token = bool( - os.environ.get("GH_TOKEN") or os.environ.get("GITHUB_TOKEN") - ) + has_token = bool(os.environ.get("GH_TOKEN") or os.environ.get("GITHUB_TOKEN")) return {"has_token": has_token}