cleanup: fix bad formatting of state.py from D8811
`test-check-format.t` was failing for me. Do I just have the wrong
version?
Differential Revision: https://phab.mercurial-scm.org/D8841
--- a/mercurial/state.py Thu Jul 30 16:13:17 2020 +0200
+++ b/mercurial/state.py Tue Jul 28 11:11:14 2020 -0700
@@ -170,12 +170,10 @@
self._opname,
)
else:
- return _(b"use 'hg %s --continue', 'hg %s --abort', "
- b"or 'hg %s --stop'") % (
- self._opname,
- self._opname,
- self._opname,
- )
+ return _(
+ b"use 'hg %s --continue', 'hg %s --abort', "
+ b"or 'hg %s --stop'"
+ ) % (self._opname, self._opname, self._opname,)
return self._cmdhint