Remove the directory at path:
path
os.rmdir(path)
You should not use os.remove() to remove a directory. That function is for files and using it on directories will result in an OSError
os.remove()
OSError