fix(yaml): work around ruamel parser error

This bug made it impossible to check all pnpm-lock.yaml files
This commit is contained in:
Liam Bowen 2022-10-21 14:57:42 -04:00
parent 4dcb74a498
commit 203cc7a68c

View file

@ -8,7 +8,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: