Fix "while scanning a plain scalar found unexpected ':'"

This commit is contained in:
seroy 2021-08-17 23:10:10 +03:00
parent 5a2f272d48
commit 3bdd0b0802

View file

@ -7,7 +7,7 @@ from typing import Sequence
import ruamel.yaml
yaml = ruamel.yaml.YAML(typ='safe')
yaml = ruamel.yaml.YAML(typ='safe', pure=True)
def _exhaust(gen: Generator[str, None, None]) -> None: