Mercurial > public > mercurial-scm > hg
diff hgext/lfs/wrapper.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 | 18c8c18993f0 |
children | f4733654f144 |
line wrap: on
line diff
--- a/hgext/lfs/wrapper.py Thu Sep 12 12:53:00 2024 -0400 +++ b/hgext/lfs/wrapper.py Mon Sep 16 15:36:38 2024 +0200 @@ -169,7 +169,7 @@ cachedelta=None, node=None, flags=revlog.REVIDX_DEFAULT_FLAGS, - **kwds + **kwds, ): # The matcher isn't available if reposetup() wasn't called. lfstrack = self._revlog.opener.options.get(b'lfstrack') @@ -194,7 +194,7 @@ cachedelta=cachedelta, node=node, flags=flags, - **kwds + **kwds, )