comparison mercurial/url.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 208698117124
children f4733654f144
comparison
equal deleted inserted replaced
51861:f81e0ce5103a 51862:607e94e01851
310 host, 310 host,
311 port=None, 311 port=None,
312 key_file=None, 312 key_file=None,
313 cert_file=None, 313 cert_file=None,
314 *args, 314 *args,
315 **kwargs 315 **kwargs,
316 ): 316 ):
317 keepalive.HTTPConnection.__init__(self, host, port, *args, **kwargs) 317 keepalive.HTTPConnection.__init__(self, host, port, *args, **kwargs)
318 self.key_file = key_file 318 self.key_file = key_file
319 self.cert_file = cert_file 319 self.cert_file = cert_file
320 320