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
This warning is one of the actually useful ones as it hints early at typos.
In this case one should assign the unused return value to a "_" variable to indicate the intent to not use it to the reader and the tool, e.g.
Just seen
https://github.com/Open-MSS/MSS/blob/stable/mslib/msui/mscolab.py#L1965C57-L1966C1
name, file_ext = fs.path.splitext(file_name)
is defined but not used.
I am not sure about if our test in the past had seen that.
So: yes
The text was updated successfully, but these errors were encountered: