You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
c = HistoryClient(...)
await c.connect()
response = await c.history_raw_timeline(...)
data = [(timestamp, value) for timestamp, value in response]
assert len(data) > 0
data = [(timestamp, value) for timestamp, value in response]
assert len(data) > 0 # this fails :(
This makes MetricQ hard to use in jupyter notebooks
The text was updated successfully, but these errors were encountered:
The following code should work:
This makes MetricQ hard to use in jupyter notebooks
The text was updated successfully, but these errors were encountered: