From 7224c7183b17a053e988c5c6f03443cfde70e052 Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Fri, 22 Jul 2022 14:58:21 -0700 Subject: [PATCH] docfix: scheme can be string or null --- jc/parsers/url.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/jc/parsers/url.py b/jc/parsers/url.py index 56c39118..8789f839 100644 --- a/jc/parsers/url.py +++ b/jc/parsers/url.py @@ -27,7 +27,7 @@ Schema: { "url": string, - "scheme": string, + "scheme": string or null, "netloc": string or null, "path": string or null, "path_list": [ array or null @@ -46,7 +46,7 @@ Schema: "port": integer or null, # [1] "encoded": { "url": string, - "scheme": string, + "scheme": string or null, "netloc": string or null, "path": string or null, "path_list": [ array or null @@ -61,7 +61,7 @@ Schema: }, "decoded": { "url": string, - "scheme": string, + "scheme": string or null, "netloc": string or null, "path": string or null, "path_list": [ array or null