fix flake8 warnings

This commit is contained in:
Janne Sinivirta
2018-01-07 14:37:09 +02:00
parent c3cae5dfc4
commit 5be733a174
2 changed files with 4 additions and 4 deletions

View File

@@ -116,8 +116,8 @@ def test_fiat_convert_get_price(mocker):
def test_fiat_convert_without_network(mocker):
Pymarketcap = MagicMock(side_effect=ImportError('Oh boy, you have no network!'))
mocker.patch('freqtrade.fiat_convert.Pymarketcap', Pymarketcap)
pymarketcap = MagicMock(side_effect=ImportError('Oh boy, you have no network!'))
mocker.patch('freqtrade.fiat_convert.Pymarketcap', pymarketcap)
fiat_convert = CryptoToFiatConverter()
assert fiat_convert._coinmarketcap is None