From eb721bd514edcc7dbfc914cb632986c8cdf2ce84 Mon Sep 17 00:00:00 2001 From: Nick Sweeting Date: Mon, 28 Oct 2024 20:16:46 -0700 Subject: [PATCH] tweak parser imports --- archivebox/parsers/generic_jsonl.py | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/archivebox/parsers/generic_jsonl.py b/archivebox/parsers/generic_jsonl.py index 3af7356b..3948ba18 100644 --- a/archivebox/parsers/generic_jsonl.py +++ b/archivebox/parsers/generic_jsonl.py @@ -1,14 +1,11 @@ __package__ = 'archivebox.parsers' import json - from typing import IO, Iterable -from ..index.schema import Link -from archivebox.misc.util import ( - enforce_types, -) +from archivebox.misc.util import enforce_types +from ..index.schema import Link from .generic_json import jsonObjectToLink def parse_line(line: str):