From e56944dc2447640712b7c389abbef30267770b7e Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Tue, 19 Jul 2022 12:58:49 -0700 Subject: [PATCH] formatting --- jc/parsers/url.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/jc/parsers/url.py b/jc/parsers/url.py index 6291dd56..6150d020 100644 --- a/jc/parsers/url.py +++ b/jc/parsers/url.py @@ -27,7 +27,7 @@ Schema: Examples: - % echo "http://example.com/test/path?q1=foo&q2=bar#frag" | jc --url -p + $ echo "http://example.com/test/path?q1=foo&q2=bar#frag" | jc --url -p { "scheme": "http", "netloc": "example.com", @@ -57,7 +57,7 @@ Examples: } """ from urllib.parse import urlparse -from typing import List, Dict +from typing import Dict import jc.utils