comparison mercurial/ui.py @ 52394:7ac8fdb70bae

ui: stop using the `pycompat.open()` shim The two instances here were already compatible with the py3 builtin function.
author Matt Harbison <matt_harbison@yahoo.com>
date Wed, 04 Dec 2024 20:45:13 -0500
parents f4733654f144
children 0a81f3ef054c
comparison
equal deleted inserted replaced
52393:07a5a249faf8 52394:7ac8fdb70bae
36 overload, 36 overload,
37 ) 37 )
38 38
39 from .i18n import _ 39 from .i18n import _
40 from .node import hex 40 from .node import hex
41 from .pycompat import (
42 open,
43 )
44 41
45 from . import ( 42 from . import (
46 color, 43 color,
47 config, 44 config,
48 configitems, 45 configitems,