refresh_period not necessary for a local file

This commit is contained in:
Bloodhunter4rc
2024-01-26 17:08:38 +01:00
parent fd21658523
commit 027ce4337d

View File

@@ -281,8 +281,7 @@ class RemotePairList(IPairList):
def save_pairlist(self, pairlist: List[str], filename: str) -> None:
pairlist_data = {
"pairs": pairlist,
"refresh_period": self._refresh_period
"pairs": pairlist
}
try:
file_path = Path(filename)