fix typo in file type detector

This commit is contained in:
Daniel Roth 2026-01-21 17:26:15 +00:00
parent 4e190328cc
commit ad03d11bc9

View file

@ -10,7 +10,7 @@ def detect_file_type(filepath: str) -> FileType:
if "lbwf" in path:
return FileType.LBWF
if "peadbody" in path:
if "peabody" in path:
return FileType.Peabody
raise ValueError("Unrecognised file path")