def make_dirs()

in google_cloud_automlops/utils/utils.py [0:0]


def make_dirs(directories: list):
    """Makes directories with the specified names.

    Args:
        directories (list): Path of the directories to make.
    """
    for d in directories:
        try:
            os.makedirs(d)
        except FileExistsError:
            pass