Migrate export filenames (#11005)

* Migrate export filenames

* formatting

* Remove test.yaml saving
This commit is contained in:
Nicolas Mowen
2024-04-17 15:26:16 -06:00
committed by GitHub
parent 392ff1319d
commit 8230813b79
2 changed files with 11 additions and 3 deletions

View File

@@ -223,8 +223,6 @@ def update_yaml_file(file_path, key_path, new_value):
data = yaml.load(f)
data = update_yaml(data, key_path, new_value)
with open("/config/test.yaml", "w") as f:
yaml.dump(data, f)
with open(file_path, "w") as f:
yaml.dump(data, f)