diff options
author | Aaron DeVore <aaron.devore@gmail.com> | 2011-03-05 02:44:00 -0800 |
---|---|---|
committer | Aaron DeVore <aaron.devore@gmail.com> | 2011-03-05 02:44:00 -0800 |
commit | 32050a613a3eff5f53c6395ea365159226351946 (patch) | |
tree | 6249a826867102d2e2ced601a8ee99ae3344ba75 /bs4/testing.py | |
parent | 037b6e32bdea1ee73a62284d60f456b6a39b96af (diff) |
PEP8ifying
Diffstat (limited to 'bs4/testing.py')
-rw-r--r-- | bs4/testing.py | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/bs4/testing.py b/bs4/testing.py index 9d9c26a..91c623a 100644 --- a/bs4/testing.py +++ b/bs4/testing.py @@ -5,6 +5,7 @@ from bs4 import BeautifulSoup from bs4.element import Comment, SoupStrainer from bs4.builder import LXMLTreeBuilder + class SoupTest(unittest.TestCase): @property @@ -30,8 +31,3 @@ class SoupTest(unittest.TestCase): compare_parsed_to = to_parse self.assertEquals(obj.decode(), self.document_for(compare_parsed_to)) - - - - - |