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
The output after .split from L490 will be list[str] without any doubt, so L491 is kind of reasonable for me since you use last string of the list to create the dir.
However, L492 is using a list to create the dir, which is not even making any sense.
tbh, we can just makedirs by using output_dir_path
The output after
.split
from L490 will belist[str]
without any doubt, so L491 is kind of reasonable for me since you use last string of the list to create the dir.However, L492 is using a list to create the dir, which is not even making any sense.
tbh, we can just makedirs by using
output_dir_path
For example, it used to be
But we do not even need to split it to create dir, we can just do this below
No matter how many folders you want, it will create dir recursively
The text was updated successfully, but these errors were encountered: