This commit is contained in:
Lex Berezhny 2019-12-15 01:06:43 -05:00
parent c044e1ea8c
commit e36c672c9a
2 changed files with 1 additions and 4 deletions

View file

@ -4,7 +4,6 @@ import asyncio
import logging
from decimal import Decimal
from typing import Optional, Iterable, Type
from aiohttp.client_exceptions import ClientError
from lbry.error import InvalidExchangeRateResponseError, CurrencyConversionError
from lbry.utils import aiohttp_request
from lbry.wallet.dewies import lbc_to_dewies

View file

@ -1,8 +1,6 @@
from decimal import Decimal
from torba.testcase import AsyncioTestCase
from lbry.extras.daemon.exchange_rate_manager import (
ExchangeRate, ExchangeRateManager
)
from lbry.extras.daemon.exchange_rate_manager import ExchangeRate, ExchangeRateManager
class TestExchangeRateManager(AsyncioTestCase):