From 78e271f0c88405dbd0da496c1b4eecce5cc9d1f4 Mon Sep 17 00:00:00 2001 From: Fabian Schindler <fabian.schindler.strauss@gmail.com> Date: Fri, 1 Apr 2022 15:37:34 +0200 Subject: [PATCH] Fixing superflouus abstractmethod --- registrar/source.py | 1 - 1 file changed, 1 deletion(-) diff --git a/registrar/source.py b/registrar/source.py index 5f17e0a..e31e9b9 100644 --- a/registrar/source.py +++ b/registrar/source.py @@ -384,7 +384,6 @@ class HTTPSource(Source): with open(target_path, "wb") as f: f.write(response.content) - @abstractmethod def get_vsi_env_and_path(self, path: str): return {}, f"/vsicurl/{urljoin(self.endpoint_url, path)}" -- GitLab