Closed tilsche closed 1 year ago
While it technically makes sense, the pattern of
async with subscription.drain() as drain: async for metric, time, value in drain: print(f"{metric} {time} {value}")
Is needlessly complicated and should just be
async for metric, time, value in drain_data(): print(f"{metric} {time} {value}")
While it technically makes sense, the pattern of
Is needlessly complicated and should just be