[WIP] New source: AcoLab #165

Draft
siriusnottin wants to merge 8 commits from feat-parser-acolab into main
Showing only changes of commit 51d71b748f - Show all commits

View File

@ -29,7 +29,7 @@ class Extractor(ABC):
return start_day
def guess_startswith(text, strs):
t = remove_accents(text).lower()
t = Extractor.remove_accents(text).lower()
for i, s in enumerate(strs):
if t.startswith(s):
return i + 1