1
0
Fork 0
mirror of synced 2024-06-02 10:34:43 +12:00

fix linters

This commit is contained in:
Nick Sweeting 2020-08-18 09:22:12 -04:00
parent 61ab952dab
commit e87f1d57a3
2 changed files with 1 additions and 2 deletions

View file

@ -12,7 +12,6 @@ from ..index import (
patch_main_index,
)
from ..util import enforce_types
from ..config import ANSI
from ..logging_util import (
log_archiving_started,
log_archiving_paused,

View file

@ -157,7 +157,7 @@ def fix_duplicate_links(sorted_links: Iterable[Link]) -> Iterable[Link]:
"""
ensures that all non-duplicate links have monotonically increasing timestamps
"""
from core.models import Snapshot
# from core.models import Snapshot
unique_urls: OrderedDict[str, Link] = OrderedDict()