From 50ddd78b89c9c6008561323ba350293193239c03 Mon Sep 17 00:00:00 2001 From: Rodrigo Chacon Date: Mon, 14 Jan 2013 04:43:02 -0200 Subject: [PATCH] PEP8 --- test_httpbin.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/test_httpbin.py b/test_httpbin.py index 0284c85..1924179 100755 --- a/test_httpbin.py +++ b/test_httpbin.py @@ -1,9 +1,9 @@ #!/usr/bin/env python # -*- coding: utf-8 -*- +import base64 +import unittest import httpbin -import unittest -import base64 def _string_to_base64(string): @@ -54,7 +54,5 @@ class HttpbinTestCase(unittest.TestCase): self.assertNotIn('Access-Control-Allow-Headers', response.headers) # FIXME should we add any extra headers? - - if __name__ == '__main__': unittest.main()