changeset 964:b867b5f0a63a

overlay: regularize mercurial imports
author Siddharth Agarwal <sid0@fb.com>
date Thu, 31 Dec 2015 12:37:40 -0800
parents 5db7e2be619e
children 07473e474bc4
files hggit/overlay.py
diffstat 1 files changed, 5 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/hggit/overlay.py	Thu Dec 31 12:36:16 2015 -0800
+++ b/hggit/overlay.py	Thu Dec 31 12:37:40 2015 -0800
@@ -4,9 +4,11 @@
 #
 # incomplete, implemented on demand
 
-from mercurial import ancestor
-from mercurial import manifest
-from mercurial import context
+from mercurial import (
+    ancestor,
+    manifest,
+    context,
+)
 from mercurial.node import bin, hex, nullid
 
 def _maybehex(n):