From 5b06548d88103c8ca359e2fca0157b0183b2e1f0 Mon Sep 17 00:00:00 2001 From: Florez Ospina Juan Felipe Date: Tue, 21 Jan 2025 09:30:49 +0100 Subject: [PATCH] Fix typo on extension items, extensions need to include a dot .json and .yaml. --- instruments/readers/filereader_registry.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/instruments/readers/filereader_registry.py b/instruments/readers/filereader_registry.py index 71e2a24..87362e7 100644 --- a/instruments/readers/filereader_registry.py +++ b/instruments/readers/filereader_registry.py @@ -7,7 +7,7 @@ from instruments.readers.xps_ibw_reader import read_xps_ibw_file_as_dict from instruments.readers.g5505_text_reader import read_txt_files_as_dict -file_extensions = ['.ibw','.txt','.dat','.h5','.TXT','.csv','.pkl','json','yaml'] +file_extensions = ['.ibw','.txt','.dat','.h5','.TXT','.csv','.pkl','.json','.yaml'] # Define the instruments directory (modify this as needed or set to None) default_instruments_dir = None # or provide an absolute path