Skip to content

Commit

Permalink
Be explicit about line limit
Browse files Browse the repository at this point in the history
  • Loading branch information
blakeNaccarato committed Sep 11, 2023
1 parent 6a88535 commit 3513e7d
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/boilercore/models/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
YAML_INDENT = 2
yaml = YAML()
yaml.indent(mapping=YAML_INDENT, sequence=YAML_INDENT, offset=YAML_INDENT)
yaml.width = 1000 # Otherwise Ruamel breaks lines illegally
yaml.preserve_quotes = True

T = TypeVar("T", bound=Path | str)
Expand Down

0 comments on commit 3513e7d

Please sign in to comment.