refactor: Remove unnecessary conditional
The Python standard library offers an `exist_ok` kwarg for `os.makedirs` which handles the case where directories already exist in the folder path.
The resulting code is more elegant, and allows Python to potentially optimize the call at the OS level.
authored by