Writes python object to the YAML file.
(data, path)
| 34 | |
| 35 | |
| 36 | def write_yaml_file(data, path): |
| 37 | """Writes python object to the YAML file.""" |
| 38 | with open(path, "w") as file: |
| 39 | yaml.dump(data, file) |
| 40 | |
| 41 | |
| 42 | def is_valid_file_path(path) -> bool: |
no test coverage detected