From 6ff0a86bf5c0b2506889fd0ad87453488b03a49c Mon Sep 17 00:00:00 2001 From: Yomguithereal Date: Fri, 21 Jul 2023 17:46:53 +0200 Subject: [PATCH] Adding missing infer_redirection output typing Fix #187 --- ural/infer_redirection.pyi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ural/infer_redirection.pyi b/ural/infer_redirection.pyi index 589ceeaa..c9ff0f1e 100644 --- a/ural/infer_redirection.pyi +++ b/ural/infer_redirection.pyi @@ -1 +1 @@ -def infer_redirection(url: str, recursive: bool = ...): ... +def infer_redirection(url: str, recursive: bool = ...) -> str: ...