Skip to content

Commit

Permalink
fix: make nice yaml argument optional
Browse files Browse the repository at this point in the history
Signed-off-by: gardar <[email protected]>
  • Loading branch information
gardar committed May 23, 2024
1 parent 731597c commit 5d05abe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/antsibull_changelog/yaml.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ def load_yaml(path: str) -> Any:
return yaml.load(stream, Loader=_SafeLoader)


def store_yaml(path: str, content: Any, nice: bool) -> None:
def store_yaml(path: str, content: Any, nice: bool = False) -> None:
"""
Store ``content`` as YAML file under ``path``.
"""
Expand Down

0 comments on commit 5d05abe

Please sign in to comment.