From 0d4bb63b3727e44c973d167be0d82c4c062648f6 Mon Sep 17 00:00:00 2001 From: schneefux Date: Fri, 22 Aug 2014 09:32:35 +0800 Subject: Minor style fixes: removed unused imports, commented-out code, etc. --- boot/test.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'boot/test.py') 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): -- cgit v1.3.1