From 499a44ca880e438d3a04e3f2b07ff1aebf25f395 Mon Sep 17 00:00:00 2001 From: takunomi-build-bot Date: Tue, 23 Jul 2024 00:47:48 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=A4=96=20Repository=20layout=20updated=20?= =?UTF-8?q?to=20latest=20version?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This commit was automatically generated by a script: https://gitfub.space/Jmaa/python-omni --- README.md | 4 ++-- setup.py | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 079bf1b..c6b9aa6 100644 --- a/README.md +++ b/README.md @@ -10,13 +10,13 @@ Usage: ```python import secret_loader -secrets = secret_loader.SecretLoader(env_key_prefix = 'MYAPP') + +secrets = secret_loader.SecretLoader(env_key_prefix='MYAPP') db_username = secrets.load_or_fail('DATABASE_USERNAME') db_password = secrets.load_or_fail('DATABASE_PASSWORD') ``` - Secret loading order: 0. Hardcoded values. **This is purely for debugging, prototyping, and for diff --git a/setup.py b/setup.py index 2bd3550..88cb997 100644 --- a/setup.py +++ b/setup.py @@ -19,13 +19,13 @@ Usage: ```python import secret_loader -secrets = secret_loader.SecretLoader(env_key_prefix = 'MYAPP') + +secrets = secret_loader.SecretLoader(env_key_prefix='MYAPP') db_username = secrets.load_or_fail('DATABASE_USERNAME') db_password = secrets.load_or_fail('DATABASE_PASSWORD') ``` - Secret loading order: 0. Hardcoded values. **This is purely for debugging, prototyping, and for