From ad03d11bc9443b02adb9fc363e5302a257d282e3 Mon Sep 17 00:00:00 2001 From: Daniel Roth Date: Wed, 21 Jan 2026 17:26:15 +0000 Subject: [PATCH] fix typo in file type detector --- backend/condition/file_type.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/condition/file_type.py b/backend/condition/file_type.py index 07a0669c..e0736814 100644 --- a/backend/condition/file_type.py +++ b/backend/condition/file_type.py @@ -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") \ No newline at end of file