Mercurial > public > mercurial-scm > hg
diff mercurial/cmd_impls/graft.py @ 52350:d4e30c15626d
typing: add missing `from __future__ import annotations` to core modules
author | Matt Harbison <matt_harbison@yahoo.com> |
---|---|
date | Fri, 29 Nov 2024 19:18:33 -0500 |
parents | 99615755fb8e |
children | 9042ffea4edd |
line wrap: on
line diff
--- a/mercurial/cmd_impls/graft.py Fri Nov 29 19:11:30 2024 -0500 +++ b/mercurial/cmd_impls/graft.py Fri Nov 29 19:18:33 2024 -0500 @@ -1,5 +1,7 @@ # graft.py - implementation of the graft command +from __future__ import annotations + from ..i18n import _ from .. import cmdutil, error, logcmdutil, merge as mergemod, state as statemod