Convert Dict to Env string

def dict_to_vars(d: dict) -> str:
 return ";".join([f"{key}={value}" for key, value in d.items()])