Correction5W

This commit is contained in:
bskjon 2024-04-15 01:49:48 +02:00
parent 88fc344530
commit 4a01dac180

View File

@ -36,7 +36,7 @@ class UseSource():
self.eventId = eventId self.eventId = eventId
def stripped(self, input_string) -> str: def stripped(self, input_string) -> str:
return re.sub(r'[^a-zA-Z0-9]', '', input_string) return re.sub(r'[^a-zA-Z0-9\s]', '', input_string)
def __perform_search(self, title)-> List[WeightedData]: def __perform_search(self, title)-> List[WeightedData]:
anii = AniiMetadata(title).lookup() anii = AniiMetadata(title).lookup()