summaryrefslogtreecommitdiff
path: root/boot
diff options
context:
space:
mode:
Diffstat (limited to 'boot')
-rwxr-xr-xboot/boot.py1
-rw-r--r--boot/test.py4
2 files changed, 3 insertions, 2 deletions
diff --git a/boot/boot.py b/boot/boot.py
index 12b60eb..a8141cb 100755
--- a/boot/boot.py
+++ b/boot/boot.py
@@ -1,7 +1,6 @@
#!/usr/bin/env python
import os
-import json
import urllib2
import sys
diff --git a/boot/test.py b/boot/test.py
index af5f982..3d93936 100644
--- a/boot/test.py
+++ b/boot/test.py
@@ -16,10 +16,12 @@ sys.path.append(mod_path)
import g2p
+
class UnorderedList(list):
+
def __eq__(self, other):
return sorted(self) == sorted(other)
-
+
class TestVocabCompiler(unittest.TestCase):