Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
AAriam committed Oct 24, 2023
1 parent 6deda3d commit 812a4af
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ namespaces = true
# ----------------------------------------- Project Metadata -------------------------------------
#
[project]
version = "0.0.0.dev147"
version = "0.0.0.dev148"
name = "RepoDynamics"
dependencies = [
"packaging >= 23.2, < 24",
Expand Down
6 changes: 3 additions & 3 deletions src/repodynamics/meta/manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -181,9 +181,9 @@ def _initialize_commit_data(self):
action=SecondaryActionCommitType(group_id),
conv_type=group_data["type"],
)
for group_id, group_data in self._data["commit"]["secondary_custom"].items():
commit_type[group_data["type"]] = SecondaryCustomCommit(
conv_type=group_data["type"],
for conv_type, group_data in self._data["commit"]["secondary_custom"].items():
commit_type[conv_type] = SecondaryCustomCommit(
conv_type=conv_type,
changelog_id=group_data["changelog_id"],
changelog_section_id=group_data["changelog_section_id"],
)
Expand Down

0 comments on commit 812a4af

Please sign in to comment.