diff -r 508fd40dc86a -r 0d414fb8336f hgext/githelp.py --- a/hgext/githelp.py Mon Feb 12 16:22:47 2024 +0100 +++ b/hgext/githelp.py Fri Feb 02 03:39:37 2024 +0100 @@ -111,7 +111,7 @@ ui.warn(_(b"ignoring unknown option %s\n") % flag) - args = list([convert(x) for x in args]) + args = [convert(x) for x in args] opts = dict( [ (k, convert(v)) if isinstance(v, bytes) else (k, v)