Skip to content

Commit 7053b66

Browse files
committed
fix lint
1 parent 355bc67 commit 7053b66

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

centml/sdk/config.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,11 @@ class Config(BaseSettings):
1111
CENTML_WEB_URL: str = os.getenv("CENTML_WEB_URL") or "https://app.centml.com/"
1212
CENTML_CONFIG_PATH: str = os.getenv("CENTML_CONFIG_PATH") or os.path.expanduser("~/.centml")
1313
CENTML_CRED_FILE: str = os.getenv("CENTML_CRED_FILE") or "credentials.json"
14-
CENTML_CRED_FILE_PATH: str = os.path.join(CENTML_CONFIG_PATH,CENTML_CRED_FILE)
14+
CENTML_CRED_FILE_PATH: str = os.path.join(CENTML_CONFIG_PATH, CENTML_CRED_FILE)
1515

1616
CENTML_PLATFORM_API_URL: str = os.getenv("CENTML_PLATFORM_API_URL") or "https://api.centml.com"
1717

18-
CENTML_FIREBASE_API_KEY: str = os.getenv("CENTML_FIREBASE_API_KEY") or "AIzaSyChPXy41cIAxS_Nd8oaYKyP_oKkIucobtY"
18+
CENTML_FIREBASE_API_KEY: str = os.getenv("CENTML_FIREBASE_API_KEY") or "AIzaSyChPXy41cIAxS_Nd8oaYKyP_oKkIucobtY"
1919

20-
settings = Config()
20+
21+
settings = Config()

0 commit comments

Comments
 (0)