Mercurial > public > mercurial-scm > hg-stable
comparison mercurial/cmd_impls/graft.py @ 52382: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 |
comparison
equal
deleted
inserted
replaced
52381:662b08ac9869 | 52382:d4e30c15626d |
---|---|
1 # graft.py - implementation of the graft command | 1 # graft.py - implementation of the graft command |
2 | |
3 from __future__ import annotations | |
2 | 4 |
3 from ..i18n import _ | 5 from ..i18n import _ |
4 | 6 |
5 from .. import cmdutil, error, logcmdutil, merge as mergemod, state as statemod | 7 from .. import cmdutil, error, logcmdutil, merge as mergemod, state as statemod |
6 | 8 |