Removed sort_keys=True in yaml.gen.py

pull/23322/head
Esun Kim 5 years ago
parent 80e9a15a69
commit 93d947b364
  1. 2
      src/abseil-cpp/preprocessed_builds.yaml.gen.py

@ -206,7 +206,7 @@ def main():
builds = generate_builds("absl")
os.chdir(previous_dir)
with open(OUTPUT_PATH, 'w') as outfile:
outfile.write(yaml.dump(builds, indent=2, sort_keys=True))
outfile.write(yaml.dump(builds, indent=2))
if __name__ == "__main__":

Loading…
Cancel
Save