From 3fe1d614ea358cf82e6d51122419d0e7a6272db5 Mon Sep 17 00:00:00 2001 From: Christian Oertlin Date: Thu, 14 Mar 2024 15:44:36 +0100 Subject: [PATCH] reformat --- genotype_api/config.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/genotype_api/config.py b/genotype_api/config.py index 6be4c46..2602846 100644 --- a/genotype_api/config.py +++ b/genotype_api/config.py @@ -1,6 +1,7 @@ from pathlib import Path from pydantic_settings import BaseSettings + GENOTYPE_PACKAGE = Path(__file__).parent PACKAGE_ROOT: Path = GENOTYPE_PACKAGE.parent ENV_FILE: Path = PACKAGE_ROOT / ".env" @@ -23,8 +24,8 @@ class SecuritySettings(BaseSettings): client_id: str = "" algorithm: str = "" - jwks_uri: str = "https://www.googleapis.com/oauth2/v3/certs" - api_root_path: str = "/" + jwks_uri: str = "https://www.googleapis.com/oauth2/v3/certs" + api_root_path: str = "/" class Config: env_file = str(ENV_FILE)