Skip to content

Commit 560ebaa

Browse files
Update metadata.py
1 parent 120825d commit 560ebaa

File tree

1 file changed

+0
-17
lines changed

1 file changed

+0
-17
lines changed

scripts/tests/py/metadata.py

-17
Original file line numberDiff line numberDiff line change
@@ -61,23 +61,6 @@ def __init__(self, env_yaml_file_path: str):
6161
"""
6262
with open(env_yaml_file_path) as stream:
6363
self.env=yaml.safe_load(stream)
64-
65-
66-
def __build_env_object__(self, env_yaml_file_path: str) -> Dict[str, Union[str, int, Dict]]:
67-
"""
68-
Reads a YAML file and converts it into a dictionary
69-
70-
Parameters:
71-
72-
env_yaml_file_path: str
73-
path to the YAML file that contains environment configuration
74-
75-
Returns:
76-
Dict - a Python Dictionary representation of the environment YAML file
77-
78-
"""
79-
with open(env_yaml_file_path) as stream:
80-
return yaml.safe_load(stream)
8164

8265

8366
def __resolve_env_vals__(self, metadata_dict: Dict[str, str]) -> None:

0 commit comments

Comments
 (0)