Mercurial > public > mercurial-scm > hg
diff mercurial/shelve.py @ 51858:607e94e01851
format: add many "missing" comma
Black was not adding them until the next changeset introduced a bunch of `from
__future__ import annotations` to most file. Since it make the next changeset
hard to read we introduce them in advance.
author | Matt Harbison <matt_harbison@yahoo.com> |
---|---|
date | Mon, 16 Sep 2024 15:36:38 +0200 |
parents | adbfbbf9963f |
children | f4733654f144 |
line wrap: on
line diff
--- a/mercurial/shelve.py Thu Sep 12 12:53:00 2024 -0400 +++ b/mercurial/shelve.py Mon Sep 16 15:36:38 2024 +0200 @@ -673,7 +673,7 @@ False, cmdutil.recordfilter, *pats, - **pycompat.strkwargs(opts) + **pycompat.strkwargs(opts), ) if not node: _nothingtoshelvemessaging(ui, repo, pats, opts) @@ -1050,7 +1050,7 @@ False, cmdutil.recordfilter, *pats, - **pycompat.strkwargs(opts) + **pycompat.strkwargs(opts), ) snode = repo.commit( text=shelvectx.description(),