tests/fakemergerecord.py
changeset 43076 2372284d9457
parent 36510 4dc6f0905722
child 44915 b7808443ed6a
--- a/tests/fakemergerecord.py	Sat Oct 05 10:29:34 2019 -0400
+++ b/tests/fakemergerecord.py	Sun Oct 06 09:45:02 2019 -0400
@@ -12,9 +12,15 @@
 cmdtable = {}
 command = registrar.command(cmdtable)
 
-@command(b'fakemergerecord',
-         [(b'X', b'mandatory', None, b'add a fake mandatory record'),
-          (b'x', b'advisory', None, b'add a fake advisory record')], '')
+
+@command(
+    b'fakemergerecord',
+    [
+        (b'X', b'mandatory', None, b'add a fake mandatory record'),
+        (b'x', b'advisory', None, b'add a fake advisory record'),
+    ],
+    '',
+)
 def fakemergerecord(ui, repo, *pats, **opts):
     with repo.wlock():
         ms = merge.mergestate.read(repo)