def outputToYamlFile()

in tooling/mass-change/mass-change.py [0:0]


def outputToYamlFile(data, filename):
  # Write the results to a file
  with open(filename, "w+") as f:
      yaml.dump(data, f, indent=2, default_flow_style=False, sort_keys=False)