We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 22b36de commit 11878a6Copy full SHA for 11878a6
example_publisher/providers/hermes.py
@@ -41,4 +41,7 @@ async def _get_hermes_prices(self):
41
break
42
print("Latest prices:")
43
for symbol, price_feed in self._client.prices_dict.items():
44
- print(f"Symbol: {symbol}, Price: {price_feed['price'].price}, Confidence: {price_feed['price'].conf}, Time: {price_feed['price'].publish_time}")
+ 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}")
0 commit comments