Skip to content

Commit

Permalink
Fix default value for file_flag in Repository.merge_commits
Browse files Browse the repository at this point in the history
  • Loading branch information
jorio committed Jan 25, 2024
1 parent dde14c8 commit 6c098b4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pygit2/repository.py
Original file line number Diff line number Diff line change
Expand Up @@ -697,7 +697,7 @@ def merge_commits(
theirs: typing.Union[str, Oid, Commit],
favor = MergeFavor.NORMAL,
flags = MergeFlag.FIND_RENAMES,
file_flags = MergeFavor.NORMAL,
file_flags = MergeFileFlag.DEFAULT,
) -> Index:
"""
Merge two arbitrary commits.
Expand Down

0 comments on commit 6c098b4

Please sign in to comment.