From cef2aaf910b9fda680a8fa48159fe6efc4f10e36 Mon Sep 17 00:00:00 2001 From: sanj <67624670+iodrift@users.noreply.github.com> Date: Wed, 24 Jul 2024 23:58:49 -0700 Subject: [PATCH] Auto-update: Wed Jul 24 23:58:49 PDT 2024 --- sijapi/classes.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sijapi/classes.py b/sijapi/classes.py index c6924f1..147f2e6 100644 --- a/sijapi/classes.py +++ b/sijapi/classes.py @@ -49,7 +49,7 @@ class Configuration(BaseModel): if secrets_path: with secrets_path.open('r') as file: secrets_data = yaml.safe_load(file) - info(f"Loaded secrets data from {secrets_path}") + # info(f"Loaded secrets data from {secrets_path}") if isinstance(config_data, list): for item in config_data: if isinstance(item, dict): @@ -182,7 +182,7 @@ class APIConfig(BaseModel): try: with open(secrets_path, 'r') as file: secrets_data = yaml.safe_load(file) - info(f"Loaded secrets: {secrets_data}") + # info(f"Loaded secrets: {secrets_data}") except FileNotFoundError: err(f"Secrets file not found: {secrets_path}") secrets_data = {}