changeset 1109:21264429a8d4

cleanup: remove unused imports
author Sean Farley <sean@farley.io>
date Mon, 27 Nov 2017 18:21:17 -0500
parents aae2d15de6af
children 94aaea5c65f7
files hggit/git_handler.py hggit/util.py setup.py
diffstat 3 files changed, 0 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/hggit/git_handler.py	Tue Feb 06 17:04:24 2018 -0800
+++ b/hggit/git_handler.py	Mon Nov 27 18:21:17 2017 -0500
@@ -24,7 +24,6 @@
     encoding,
     phases,
     util as hgutil,
-    url,
 )
 
 import _ssh
--- a/hggit/util.py	Tue Feb 06 17:04:24 2018 -0800
+++ b/hggit/util.py	Mon Nov 27 18:21:17 2017 -0500
@@ -11,7 +11,6 @@
 from dulwich import errors
 from mercurial.i18n import _
 from mercurial import (
-    encoding,
     error,
     lock as lockmod,
     util as hgutil,
--- a/setup.py	Tue Feb 06 17:04:24 2018 -0800
+++ b/setup.py	Mon Nov 27 18:21:17 2017 -0500
@@ -4,7 +4,6 @@
     from distutils.core import setup
 
 try:
-    from collections import OrderedDict
     extra_req = []
 except ImportError:
     extra_req = ['ordereddict>=1.1']