summaryrefslogtreecommitdiff
path: root/python/mllib/transforms.py
diff options
context:
space:
mode:
authorRafael H. Schloming <rhs@apache.org>2007-08-22 18:48:49 +0000
committerRafael H. Schloming <rhs@apache.org>2007-08-22 18:48:49 +0000
commit737f9a39b069e9094de335e44e5517d293195daa (patch)
tree39a7ba669a7817d37e04e4da5482cfbbe86e027a /python/mllib/transforms.py
parent51c4f612aec73b473477cacb786865c76284e002 (diff)
downloadqpid-python-737f9a39b069e9094de335e44e5517d293195daa.tar.gz
removed circular from imports
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@568726 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'python/mllib/transforms.py')
-rw-r--r--python/mllib/transforms.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/python/mllib/transforms.py b/python/mllib/transforms.py
index bb79dcf192..69d99125e3 100644
--- a/python/mllib/transforms.py
+++ b/python/mllib/transforms.py
@@ -21,8 +21,8 @@
Useful transforms for dom objects.
"""
+import dom
from cStringIO import StringIO
-from dom import *
class Visitor:
@@ -45,12 +45,12 @@ class Identity:
return result
def default(self, tag):
- result = Tag(tag.name, *tag.attrs)
+ result = dom.Tag(tag.name, *tag.attrs)
result.extend(self.descend(tag))
return result
def tree(self, tree):
- result = Tree()
+ result = dom.Tree()
result.extend(self.descend(tree))
return result