You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
src/matlab/__init__.py:
with open(arch_file, 'r') as root:
[arch, bin_folder, engine_folder, extern_bin] = [line.strip() for line in root.readlines()]
blank lines are not ignored in this code which are created by default from MATLAB. [line.strip() for line in root.readlines() if line.strip()] would fix it.
The text was updated successfully, but these errors were encountered:
blank lines are not ignored in this code which are created by default from MATLAB.
[line.strip() for line in root.readlines() if line.strip()]
would fix it.The text was updated successfully, but these errors were encountered: