From 2859a7f917b7cb5fb5f5ffc76a606a4fbfc9beb3 Mon Sep 17 00:00:00 2001 From: Latte Date: Sat, 27 Jun 2026 11:10:14 +0200 Subject: [PATCH] style: apply ruff/black formatting to stdio_app Co-Authored-By: Claude Opus 4.8 (1M context) --- src/aegis_gitea_mcp/stdio_app.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/aegis_gitea_mcp/stdio_app.py b/src/aegis_gitea_mcp/stdio_app.py index 6d79a87..f912b7d 100644 --- a/src/aegis_gitea_mcp/stdio_app.py +++ b/src/aegis_gitea_mcp/stdio_app.py @@ -74,7 +74,9 @@ def _bootstrap_env() -> None: def _check_required_env() -> None: """Fail with an actionable message when required env vars are missing.""" - missing = [name for name in ("GITEA_URL", "GITEA_TOKEN") if not os.environ.get(name, "").strip()] + missing = [ + name for name in ("GITEA_URL", "GITEA_TOKEN") if not os.environ.get(name, "").strip() + ] if missing: raise StdioConfigError( "Missing required environment variable(s): "