1
0
Fork 0
mirror of synced 2024-06-28 11:00:35 +12:00

Fixed lint

This commit is contained in:
Angel Rey 2020-09-14 11:22:35 -05:00 committed by Cristian Vargas
parent 7fd7dced9a
commit dc160daba8

View file

@ -1,13 +1,11 @@
__package__ = 'archivebox.extractors'
from pathlib import Path
from tempfile import NamedTemporaryFile
from typing import Optional
import json
from ..index.schema import Link, ArchiveResult, ArchiveError
from ..system import run, atomic_write
from ..index.schema import Link, ArchiveResult, ArchiveOutput
from ..system import atomic_write
from ..util import (
enforce_types,
get_headers,
@ -19,7 +17,6 @@ from ..config import (
CURL_USER_AGENT,
CURL_VERSION,
CHECK_SSL_VALIDITY,
DEPENDENCIES,
)
from ..logging_util import TimedProgress