diff hggit/_ssh.py @ 962:a539321562ef

ssh: regularize mercurial imports
author Siddharth Agarwal <sid0@fb.com>
date Thu, 31 Dec 2015 12:34:29 -0800
parents e7316a108780
children 8ed6c0cae9b8
line wrap: on
line diff
--- a/hggit/_ssh.py	Thu Dec 31 12:33:17 2015 -0800
+++ b/hggit/_ssh.py	Thu Dec 31 12:34:29 2015 -0800
@@ -1,7 +1,10 @@
 from dulwich.client import SubprocessWrapper
-from mercurial import util
 import subprocess
 
+from mercurial import (
+    util,
+)
+
 class SSHVendor(object):
     """Parent class for ui-linked Vendor classes."""