From c39a8cb16ef1c51bda6888c64ff03e4a5f64adc5 Mon Sep 17 00:00:00 2001 From: quanpython Date: Fri, 22 Dec 2023 17:34:58 +0700 Subject: [PATCH] fix matlab file type --- studio/app/const.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/studio/app/const.py b/studio/app/const.py index 14fc15e05..8827a2a3b 100644 --- a/studio/app/const.py +++ b/studio/app/const.py @@ -7,7 +7,7 @@ class FILETYPE: CSV: str = "csv" HDF5: str = "hdf5" BEHAVIOR: str = "behavior" - MATLAB: str = "mat" + MATLAB: str = "matlab" ACCEPT_TIFF_EXT = [".tif", ".tiff", ".TIF", ".TIFF"]