clean prints

This commit is contained in:
9qeklajc
2026-03-03 23:59:14 +01:00
parent 847f4b07a5
commit 97daddb95a
2 changed files with 1 additions and 3 deletions
+1 -2
View File
@@ -3093,7 +3093,7 @@ class BaseUpstreamProvider:
UpstreamProviderRow.api_key == self.api_key
)
result = await session.exec(stmt)
# .first() returns the object or None if not found
provider = result.first()
if not provider or not provider.id:
@@ -3115,7 +3115,6 @@ class BaseUpstreamProvider:
models.append(found_db_model)
models_with_fees = [self._apply_provider_fee_to_model(m) for m in models]
print([mode.id for mode in models_with_fees])
try:
sats_to_usd = sats_usd_price()
-1
View File
@@ -283,7 +283,6 @@ class PPQAIUpstreamProvider(BaseUpstreamProvider):
)
async with httpx.AsyncClient(timeout=30.0) as client:
print(f"Payload: {payload}", "sending to", url)
response = await client.post(url, headers=headers, json=payload)
response.raise_for_status()
invoice_data = response.json()