This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from typing import Dict, List | |
| def yaml2Dict(texts: str) -> Dict: | |
| """ | |
| Convert YAML to Dict (with a lot of restrictions) | |
| Things not allowed: | |
| - empty strings as values | |
| - weird spaces. All child keys should have space > parent and should be same throughout |