# HG changeset patch # User Martin von Zweigbergk # Date 2019-01-18 06:07:58 # Node ID 784ab13b340f59d11094f3c65d6ca95b9a65c1ee # Parent 431cf2c8c83969a68d132d6ba92af1998e147927 remotefilelog: remove pointless return statement from constructor Differential Revision: https://phab.mercurial-scm.org/D5630 diff --git a/hgext/remotefilelog/remotefilectx.py b/hgext/remotefilelog/remotefilectx.py --- a/hgext/remotefilelog/remotefilectx.py +++ b/hgext/remotefilelog/remotefilectx.py @@ -452,8 +452,8 @@ class remotefilectx(context.filectx): class remoteworkingfilectx(context.workingfilectx, remotefilectx): def __init__(self, repo, path, filelog=None, workingctx=None): self._ancestormap = None - return super(remoteworkingfilectx, self).__init__(repo, path, - filelog, workingctx) + super(remoteworkingfilectx, self).__init__(repo, path, filelog, + workingctx) def parents(self): return remotefilectx.parents(self)