invalid mode: 'Urb' when reading file from a string
When trying to read the file using the nas module by specifying the file path as a string I got an error.
Seems to be a deprecation from the new python versions: see: https://github.com/eddie3/gogrepo/issues/69
I use python 3.12
I was running this
nas.read(str(file_path), ignore_parameter=True)
And received this:
File "C:\Users\coli\Documents\gigas-processing-software\qa_nilu.py", line 74, in main
nas.read(str(file_path), ignore_parameter=True)
File "C:\Users\coli\AppData\Local\Programs\Python\Python312\Lib\site-packages\ebas\io\file\basefile\read.py", line 86, in read
self._read(
File "C:\Users\coli\AppData\Local\Programs\Python\Python312\Lib\site-packages\ebas\io\file\nasa_ames\read\read.py", line 78, in _read
self.nasa1001.read(filename, encoding, skip_data=skip_data,
File "C:\Users\coli\AppData\Local\Programs\Python\Python312\Lib\site-packages\fileformats\NasaAmes1001\read.py", line 116, in read
with AsciiRead(
File "C:\Users\coli\AppData\Local\Programs\Python\Python312\Lib\site-packages\fileformats\AsciiRead\ascii_read.py", line 100, in __init__
self.open()
File "C:\Users\coli\AppData\Local\Programs\Python\Python312\Lib\site-packages\fileformats\AsciiRead\ascii_read.py", line 133, in open
self.file = open(self.filename, "Urb")
^^^^^^^^^^^^^^^^^^^^^^^^^^
ValueError: invalid mode: 'Urb'