# HG changeset patch # User Anton Shestakov # Date 1704049048 10800 # Node ID 35dc0ef481a547d2d3eda46575d1abc56fd97c75 # Parent b669ded0fe00c9ac193335ef6b5f634c335f1c77 pullbundle: let pytype ignore the old discovery.outgoing() signature diff -r b669ded0fe00 -r 35dc0ef481a5 hgext3rd/pullbundle.py --- a/hgext3rd/pullbundle.py Sun Dec 31 16:59:26 2023 -0300 +++ b/hgext3rd/pullbundle.py Sun Dec 31 15:57:28 2023 -0300 @@ -383,7 +383,7 @@ if r'ancestorsof' in discovery.outgoing.__init__.__code__.co_varnames: return discovery.outgoing(repo, missingroots=nodes, ancestorsof=nodes) else: - return discovery.outgoing(repo, missingroots=nodes, missingheads=nodes) + return discovery.outgoing(repo, missingroots=nodes, missingheads=nodes) # pytype: disable=wrong-keyword-args # changegroup part construction