From 33b43b0b16d1114bfdbb28ea1c8f2e4156af8020 Mon Sep 17 00:00:00 2001 From: farmage Date: Mon, 4 Jul 2022 11:09:06 +0300 Subject: [PATCH] flake errors cleanup --- freqtrade/constants.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/freqtrade/constants.py b/freqtrade/constants.py index 6790a7441..bfb53c675 100644 --- a/freqtrade/constants.py +++ b/freqtrade/constants.py @@ -1,5 +1,4 @@ # pragma pylint: disable=too-few-public-methods -# flake8: noqa: E501 """ bot constants @@ -35,7 +34,8 @@ AVAILABLE_PAIRLISTS = ['StaticPairList', 'VolumePairList', 'AgeFilter', 'OffsetFilter', 'PerformanceFilter', 'PrecisionFilter', 'PriceFilter', 'RangeStabilityFilter', 'ShuffleFilter', 'SpreadFilter', 'VolatilityFilter'] -AVAILABLE_PROTECTIONS = ['CooldownPeriod', 'LowProfitPairs', 'MaxDrawdown', 'StoplossGuard', 'TradingTime'] +AVAILABLE_PROTECTIONS = ['CooldownPeriod', 'LowProfitPairs', 'MaxDrawdown', 'StoplossGuard', + 'TradingTime'] AVAILABLE_DATAHANDLERS = ['json', 'jsongz', 'hdf5'] BACKTEST_BREAKDOWNS = ['day', 'week', 'month'] BACKTEST_CACHE_AGE = ['none', 'day', 'week', 'month']