tidied spark

This commit is contained in:
benarc 2021-11-03 22:35:01 +00:00
parent 7af0b786d1
commit a4ca6910fa

View File

@ -183,11 +183,13 @@ class SparkWallet(Wallet):
raise KeyError("supplied an invalid checking_id")
async def paid_invoices_stream(self) -> AsyncGenerator[str, None]:
url = self.url + "/stream?access-key=" + self.token
url = f"{self.url}/stream?access-key={self.token}"
while True:
try:
async with httpx.AsyncClient(timeout=None) as client:
async with httpx.AsyncClient(
timeout=None, headers=self.token
) as client:
async with client.stream("GET", url) as r:
async for line in r.aiter_lines():
if line.startswith("data:"):