Mercurial > hg
comparison hgext/fix.py @ 51862: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 | f4ff55583dec |
children | f4733654f144 |
comparison
equal
deleted
inserted
replaced
51861:f81e0ce5103a | 51862:607e94e01851 |
---|---|
337 b'metadata': filerevmetadata, | 337 b'metadata': filerevmetadata, |
338 } | 338 } |
339 repo.hook( | 339 repo.hook( |
340 b'postfixfile', | 340 b'postfixfile', |
341 throw=False, | 341 throw=False, |
342 **pycompat.strkwargs(hookargs) | 342 **pycompat.strkwargs(hookargs), |
343 ) | 343 ) |
344 numitems[rev] -= 1 | 344 numitems[rev] -= 1 |
345 # Apply the fixes for this and any other revisions that are | 345 # Apply the fixes for this and any other revisions that are |
346 # ready and sitting at the front of the queue. Using a loop here | 346 # ready and sitting at the front of the queue. Using a loop here |
347 # prevents the queue from being blocked by the first revision to | 347 # prevents the queue from being blocked by the first revision to |