1
0

Add env_key_prefix
Some checks failed
Python Ruff Code Quality / ruff (push) Failing after 22s
Run Python tests (through Pytest) / Test (push) Failing after 30s
Verify Python project can be installed, loaded and have version checked / Test (push) Successful in 28s

This commit is contained in:
Jon Michael Aanes 2024-12-02 17:44:05 +01:00
parent 0b2a73be24
commit 59cb798f7d
Signed by: Jmaa
SSH Key Fingerprint: SHA256:Ab0GfHGCblESJx7JRE4fj4bFy/KRpeLhi41y4pF3sNA

View File

@ -8,7 +8,7 @@ __all__ = [
'KUCOIN_SECRET',
]
secret_loader = SecretLoader()
secret_loader = SecretLoader(env_key_prefix='CS')
KUCOIN_KEY = secret_loader.load_or_fail('KUCOIN_KEY')
KUCOIN_SECRET = secret_loader.load_or_fail('KUCOIN_SECRET')