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 is an extremely minor issue, feel free to ignore / close / etc.)
Currently, ruff recommends using Path and / separator for basically anything that uses os.path.join. Path.joinpath also appears elsewhere, but is not on the forefront.
(this is an extremely minor issue, feel free to ignore / close / etc.)
Currently,
ruff
recommends usingPath
and/
separator for basically anything that usesos.path.join
.Path.joinpath
also appears elsewhere, but is not on the forefront.However, sometimes path parts are splatted:
In this case, using
/
is not viable. I would argue that the message for that case should be changed to explicitely recommend usingjoinpath
.The text was updated successfully, but these errors were encountered: