Do not verify the backlist if it is empty

This commit is contained in:
mrpabloyeah
2025-09-09 19:24:32 +02:00
parent 3bce9278bd
commit 43be752847
+1
View File
@@ -157,6 +157,7 @@ class PairListManager(LoggingMixin):
:param logmethod: Function that'll be called, `logger.info` or `logger.warning`. :param logmethod: Function that'll be called, `logger.info` or `logger.warning`.
:return: pairlist - blacklisted pairs :return: pairlist - blacklisted pairs
""" """
if self._blacklist:
try: try:
blacklist = self.expanded_blacklist blacklist = self.expanded_blacklist
except ValueError as err: except ValueError as err: