1
0
mirror of https://github.com/pirate/ArchiveBox.git synced 2025-08-09 08:06:35 +02: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' __package__ = 'archivebox.extractors'
from pathlib import Path from pathlib import Path
from tempfile import NamedTemporaryFile
from typing import Optional from typing import Optional
import json
from ..index.schema import Link, ArchiveResult, ArchiveError from ..index.schema import Link, ArchiveResult, ArchiveOutput
from ..system import run, atomic_write from ..system import atomic_write
from ..util import ( from ..util import (
enforce_types, enforce_types,
get_headers, get_headers,
@@ -19,7 +17,6 @@ from ..config import (
CURL_USER_AGENT, CURL_USER_AGENT,
CURL_VERSION, CURL_VERSION,
CHECK_SSL_VALIDITY, CHECK_SSL_VALIDITY,
DEPENDENCIES,
) )
from ..logging_util import TimedProgress from ..logging_util import TimedProgress