From 8a57975257b443ebcf8495d4dfe603c5b4c3c0c1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gabriele=20H=C3=B6fler?= Date: Tue, 18 Jun 2019 15:01:28 +0200 Subject: [PATCH] Minor change (one type hint) --- sru/almasru.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sru/almasru.py b/sru/almasru.py index 41d0e17..eeda657 100644 --- a/sru/almasru.py +++ b/sru/almasru.py @@ -136,7 +136,7 @@ class RecordRetriever: return sru_url @staticmethod - def _response_to_xml(url): + def _response_to_xml(url: str) -> Element: response = request.urlopen(url).read() xml = fromstring(response) -- GitLab