def save_cas_to_files( cas: CollectiveActions, folder_path: str = ACTION_FOLDER ): """ Save CAS to action folder. """ cas.to_files(folder=folder_path)
def save_cas_to_all(cas: CollectiveActions): """ update cas to json, csv, readme, and actions folder. """ save_cas_to_csv(cas) save_cas_to_json(cas) save_cas_to_readme(cas) cas.to_files()