Remove unused import

Remove the import from copy, since deepcopy() isn't used anymore
(list.copy() is used instead).
This commit is contained in:
cdimauro 2021-12-12 10:21:54 +01:00
parent 878e16545d
commit 5b998aeca7
1 changed files with 0 additions and 1 deletions

View File

@ -2,7 +2,6 @@
PairList manager class PairList manager class
""" """
import logging import logging
from copy import deepcopy
from typing import Dict, List from typing import Dict, List
from cachetools import TTLCache, cached from cachetools import TTLCache, cached