Skip to content

Commit 3e5d816

Browse files
committed
lint
1 parent 11878a6 commit 3e5d816

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

example_publisher/providers/hermes.py

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,5 @@ async def _get_hermes_prices(self):
4040
if ws_task.done():
4141
break
4242
print("Latest prices:")
43-
for symbol, price_feed in self._client.prices_dict.items():
44-
print(f"Symbol: {symbol},"
45-
f" Price: {price_feed['price'].price},"
46-
f" Confidence: {price_feed['price'].conf},"
47-
f" Time: {price_feed['price'].publish_time}")
43+
for symbol, price in self._client.prices_dict.items():
44+
print(f"Symbol: {symbol}, Price: {price.price}, Confidence: {price.conf}, Time: {price.publish_time}")

0 commit comments

Comments
 (0)