We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 379b4d8 commit e7bd6d2Copy full SHA for e7bd6d2
1 file changed
pygit2/repository.py
@@ -1278,7 +1278,7 @@ def stash(
1278
Example::
1279
1280
>>> repo = pygit2.Repository('.')
1281
- >>> repo.stash(repo.default_signature(), 'WIP: stashing')
+ >>> repo.stash(repo.default_signature, 'WIP: stashing')
1282
"""
1283
1284
opts = ffi.new('git_stash_save_options *')
@@ -1347,7 +1347,7 @@ def stash_apply(
1347
1348
1349
1350
1351
>>> repo.stash_apply(strategy=CheckoutStrategy.ALLOW_CONFLICTS)
1352
1353
with git_stash_apply_options(
0 commit comments