Fixed bug when file reader not available. File reader registry now returns a reade that maps input to None.

This commit is contained in:
2024-10-14 16:03:03 +02:00
parent 2a330fcf92
commit f1b2c64f66

View File

@ -77,4 +77,4 @@ def select_file_reader(path):
return file_readers[extension]
# Default case if no reader is found
return None
return lambda x : None