This pull request includes a small but important change to the read_file function in the pyprobe/cyclers/basecycler.py file. The change ensures that file extensions are handled in a case-insensitive manner.
pyprobe/cyclers/basecycler.py: Modified the read_file function to use file_ext.lower() in the match statement to handle file extensions in a case-insensitive manner.
This pull request includes a small but important change to the
read_file
function in thepyprobe/cyclers/basecycler.py
file. The change ensures that file extensions are handled in a case-insensitive manner.pyprobe/cyclers/basecycler.py
: Modified theread_file
function to usefile_ext.lower()
in thematch
statement to handle file extensions in a case-insensitive manner.