forked from LBRYCommunity/lbry-sdk
remove unnecessary use of @property
This commit is contained in:
parent
cf9f9d0e75
commit
ea4b6935c9
1 changed files with 2 additions and 4 deletions
|
@ -46,11 +46,9 @@ class MarketFeed(object):
|
||||||
self._updater = LoopingCall(self._update_price)
|
self._updater = LoopingCall(self._update_price)
|
||||||
self._online = True
|
self._online = True
|
||||||
|
|
||||||
@property
|
|
||||||
def rate_is_initialized(self):
|
def rate_is_initialized(self):
|
||||||
return self.rate is not None
|
return self.rate is not None
|
||||||
|
|
||||||
@property
|
|
||||||
def is_online(self):
|
def is_online(self):
|
||||||
return self._online
|
return self._online
|
||||||
|
|
||||||
|
@ -225,11 +223,11 @@ class ExchangeRateManager(object):
|
||||||
return amount
|
return amount
|
||||||
|
|
||||||
for market in self.market_feeds:
|
for market in self.market_feeds:
|
||||||
if (market.rate_is_initialized and market.is_online and
|
if (market.rate_is_initialized() and market.is_online() and
|
||||||
market.rate.currency_pair == (from_currency, to_currency)):
|
market.rate.currency_pair == (from_currency, to_currency)):
|
||||||
return amount * market.rate.spot
|
return amount * market.rate.spot
|
||||||
for market in self.market_feeds:
|
for market in self.market_feeds:
|
||||||
if (market.rate_is_initialized and market.is_online and
|
if (market.rate_is_initialized() and market.is_online() and
|
||||||
market.rate.currency_pair[0] == from_currency):
|
market.rate.currency_pair[0] == from_currency):
|
||||||
return self.convert_currency(
|
return self.convert_currency(
|
||||||
market.rate.currency_pair[1], to_currency, amount * market.rate.spot)
|
market.rate.currency_pair[1], to_currency, amount * market.rate.spot)
|
||||||
|
|
Loading…
Add table
Reference in a new issue