Skip to content

Commit d595928

Browse files
committed
Moved parser_yaml.py to root
1 parent fb0da12 commit d595928

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@
33
import yaml
44

55

6-
a_yaml_file = open("./data-tests/read-write-file/docker-compose.yml")
6+
a_yaml_file = open("./data/read-write-file/docker-compose.yml")
77

88
parsed_yaml_file = yaml.load(a_yaml_file, Loader=yaml.FullLoader)
99

1010
print(parsed_yaml_file)
1111

12-
a_yaml_file2 = open("./data-tests/parser-simple-array/file.yml")
12+
a_yaml_file2 = open("./data/parser-simple-array/file.yml")
1313

1414
parsed_yaml_file2 = yaml.load(a_yaml_file2, Loader=yaml.FullLoader)
1515

0 commit comments

Comments
 (0)