Skip to content

Commit

Permalink
tox
Browse files Browse the repository at this point in the history
  • Loading branch information
0xSpuddy committed Oct 15, 2024
1 parent 8f04782 commit 22efba7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/telliot_feeds/feeds/lsk_usd_feed.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from telliot_feeds.datafeed import DataFeed
from telliot_feeds.queries.price.spot_price import SpotPrice
from telliot_feeds.sources.price.spot.okx import OKXSpotPriceSource
from telliot_feeds.sources.price.spot.kraken import KrakenSpotPriceSource
from telliot_feeds.sources.price.spot.okx import OKXSpotPriceSource
from telliot_feeds.sources.price.spot.uniswapV3 import UniswapV3PriceSource
from telliot_feeds.sources.price_aggregator import PriceAggregator

Expand All @@ -14,7 +14,7 @@
sources=[
OKXSpotPriceSource(asset="lsk", currency="usdt"),
KrakenSpotPriceSource(asset="lsk", currency="usd"),
UniswapV3PriceSource(asset="lsk", currency="usd")
UniswapV3PriceSource(asset="lsk", currency="usd"),
],
),
)

0 comments on commit 22efba7

Please sign in to comment.