Skip to content

Commit

Permalink
Avoid unnecessary parameters which will eventually get removed (#635)
Browse files Browse the repository at this point in the history
* Avoid unnecessary parameters which will eventually get removed.

* Add changelog.
  • Loading branch information
felixfontein authored Oct 16, 2024
1 parent 39cfa10 commit 5f6ebd2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 2 additions & 0 deletions changelogs/fragments/635-changelog.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
minor_changes:
- "Adjust to upcoming changes in antsibull-changelog by removing superfluous parameters (https://github.com/ansible-community/antsibull-build/pull/635)."
4 changes: 1 addition & 3 deletions src/antsibull_build/changelog.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,9 +73,7 @@ def __init__(
self.config = config
self.changes = changes
self.generator_flatmap = flatmap
self.generator = ChangelogGenerator(
self.config, self.changes, plugins=None, fragments=None, flatmap=flatmap
)
self.generator = ChangelogGenerator(self.config, self.changes, flatmap=flatmap)

@classmethod
def collection(
Expand Down

0 comments on commit 5f6ebd2

Please sign in to comment.