aboutsummaryrefslogtreecommitdiffstats
path: root/tools/hdv/redfish/yaml_utils.py
diff options
context:
space:
mode:
Diffstat (limited to 'tools/hdv/redfish/yaml_utils.py')
-rw-r--r--tools/hdv/redfish/yaml_utils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/hdv/redfish/yaml_utils.py b/tools/hdv/redfish/yaml_utils.py
index 21e4fb6..438c150 100644
--- a/tools/hdv/redfish/yaml_utils.py
+++ b/tools/hdv/redfish/yaml_utils.py
@@ -6,6 +6,7 @@ import yaml
# pylint: disable=E0611
from log_utils import LOGGER
+
def read_yaml(file):
'''read a yaml file
'''
@@ -18,7 +19,6 @@ def read_yaml(file):
def write_yaml(file, dict_data):
'''write a yaml file
'''
- #yaml.dump(dict_data, open(file, "w"), width = 80)
yaml.safe_dump(dict_data, open(file, "w"), explicit_start=True)