Skip to content

Commit

Permalink
reformat
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrOertlin committed Mar 14, 2024
1 parent b47c931 commit 3fe1d61
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions genotype_api/config.py
Original file line number Diff line number Diff line change
@@ -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"
Expand All @@ -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)
Expand Down

0 comments on commit 3fe1d61

Please sign in to comment.