Small adjustments

This commit is contained in:
Matthias
2019-11-09 07:07:33 +01:00
parent b610e8c7e6
commit 1059586226
2 changed files with 5 additions and 6 deletions

View File

@@ -5,7 +5,7 @@ Provides lists as configured in config.json
"""
import logging
from typing import List, Dict
from typing import Dict, List
from freqtrade.pairlist.IPairList import IPairList
@@ -31,7 +31,7 @@ class StaticPairList(IPairList):
Short whitelist method description - used for startup-messages
-> Please overwrite in subclasses
"""
return f"{self.name}: {self.whitelist}"
return f"{self.name}"
def filter_pairlist(self, pairlist: List[str], tickers: List[Dict]) -> List[str]:
"""