Skip to content

Commit

Permalink
chore: fix the --no-github argument type
Browse files Browse the repository at this point in the history
  • Loading branch information
barjin committed Dec 17, 2024
1 parent a81cb87 commit 0e39be4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion git-cliff-release/enhance_context.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ def enhance_commit(commit: dict[str, Any], pr_issues: dict[int, list[int]]) -> N
parser.add_argument("--repo", type=str, required=True)
parser.add_argument("--unreleased-version", nargs="?", default=None, type=str)
parser.add_argument("--release-notes", action=BooleanOptionalAction)
parser.add_argument("--no-github", type=bool, required=False, default=False)
parser.add_argument("--no-github", type=bool, nargs="?", default=False)


if __name__ == "__main__":
Expand Down

0 comments on commit 0e39be4

Please sign in to comment.