fix: environment variable assertions

This commit is contained in:
2025-10-01 21:31:43 +02:00
parent ebd4275017
commit 1c884b67dd
5 changed files with 7 additions and 7 deletions

View File

@@ -49,10 +49,10 @@ class CoinBaseWrapper(BaseWrapper):
def __init__(self, currency: str = "USD"):
api_key = os.getenv("COINBASE_API_KEY")
assert api_key is not None, "API key is required"
assert api_key, "COINBASE_API_KEY environment variable not set"
api_private_key = os.getenv("COINBASE_API_SECRET")
assert api_private_key is not None, "API private key is required"
assert api_private_key, "COINBASE_API_SECRET environment variable not set"
self.currency = currency
self.client: RESTClient = RESTClient(

View File

@@ -34,7 +34,7 @@ class CryptoCompareWrapper(BaseWrapper):
"""
def __init__(self, currency:str='USD'):
api_key = os.getenv("CRYPTOCOMPARE_API_KEY")
assert api_key is not None, "API key is required"
assert api_key, "CRYPTOCOMPARE_API_KEY environment variable not set"
self.api_key = api_key
self.currency = currency