From eae7d8dd10b8e4f66595082a169b08f705300bc2 Mon Sep 17 00:00:00 2001 From: bskjon Date: Mon, 15 Apr 2024 01:14:27 +0200 Subject: [PATCH] Correction --- apps/pyMetadata/sources/select.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/pyMetadata/sources/select.py b/apps/pyMetadata/sources/select.py index 25a06792..cfcb6ea6 100644 --- a/apps/pyMetadata/sources/select.py +++ b/apps/pyMetadata/sources/select.py @@ -28,7 +28,7 @@ class UseSource(): def __init__(self, title, eventId) -> None: self.title = title - def stripped(input_string): + def stripped(self, input_string) -> str: return re.sub(r'[^a-zA-Z0-9]', '', input_string) def __perform_search(self, title)-> List[WeightedData]: