diff --git a/synapse/app/homeserver.py b/synapse/app/homeserver.py
index ba76ee362a916aa4ec3d9631e8fe133b26bf9dee..8e60304e29f2aa974a03349f0e78b9b83abe7f23 100755
--- a/synapse/app/homeserver.py
+++ b/synapse/app/homeserver.py
@@ -15,7 +15,6 @@
 # limitations under the License.
 
 import sys
-
 sys.dont_write_bytecode = True
 from synapse.python_dependencies import check_requirements, DEPENDENCY_LINKS
 
diff --git a/synapse/http/client.py b/synapse/http/client.py
index da77c8b0acf230e6ccba17d73e4e952a7620f15c..815a8387295b7d13fa373861a0ac8ebfd7e9f1fe 100644
--- a/synapse/http/client.py
+++ b/synapse/http/client.py
@@ -265,7 +265,8 @@ class WoefullyInsecureContextFactory(ssl.ContextFactory):
     """
     Factory for PyOpenSSL SSL contexts which does absolutely no certificate verification.
 
-    Do not use this unless you really, really hate your users."""
+    Do not use this unless you really, really hate your users.
+    """
 
     def __init__(self):
         self._context = SSL.Context(SSL.SSLv23_METHOD)