Mercurial > hg
changeset 51299:726d8584905a
remotefilelog: adjust the signature of basepack.createindex
pytype point that the subclass signature have been updated.
author | Pierre-Yves David <pierre-yves.david@octobus.net> |
---|---|
date | Tue, 19 Dec 2023 22:00:47 +0100 |
parents | c8a2fdf5ca37 |
children | fa87eeeb10ca |
files | hgext/remotefilelog/basepack.py |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/hgext/remotefilelog/basepack.py Thu Dec 21 00:19:19 2023 +0100 +++ b/hgext/remotefilelog/basepack.py Tue Dec 19 22:00:47 2023 +0100 @@ -501,7 +501,7 @@ self.idxfp.write(rawindex) self.idxfp.close() - def createindex(self, nodelocations): + def createindex(self, nodelocations, indexoffset): raise NotImplementedError() def _writeheader(self, indexparams):