diff -r 346af7687c6f -r 89a2afe31e82 mercurial/httppeer.py --- a/mercurial/httppeer.py Fri Nov 27 17:00:00 2020 -0500 +++ b/mercurial/httppeer.py Fri Nov 27 17:03:29 2020 -0500 @@ -766,7 +766,10 @@ % _(b', ').join(sorted(permissions)) ) - permission = {b'push': b'rw', b'pull': b'ro',}[permissions.pop()] + permission = { + b'push': b'rw', + b'pull': b'ro', + }[permissions.pop()] handler, resp = sendv2request( self._ui, @@ -942,7 +945,10 @@ # Integer priority for the service. If we could choose from multiple # services, we choose the one with the highest priority. API_PEERS = { - wireprototypes.HTTP_WIREPROTO_V2: {b'init': httpv2peer, b'priority': 50,}, + wireprototypes.HTTP_WIREPROTO_V2: { + b'init': httpv2peer, + b'priority': 50, + }, }