From 7ce44f8e7ba12efcd894693d83236475024f5d29 Mon Sep 17 00:00:00 2001
From: vuillaut <thomas.vuillaume@gmail.com>
Date: Mon, 13 Sep 2021 22:17:47 +0200
Subject: [PATCH] fix type issue

---
 eossr/api/__init__.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/eossr/api/__init__.py b/eossr/api/__init__.py
index 0d3cf212..f06d85cb 100644
--- a/eossr/api/__init__.py
+++ b/eossr/api/__init__.py
@@ -15,7 +15,7 @@ class Ossr(Zenodo):
     def __init__(self):
         super().__init__()
 
-    def search(self, search: str, **kwargs) -> list[Record]:
+    def search(self, search, **kwargs):
         """
         Search the ESCAPE OSSR
 
-- 
GitLab