From 2424ece0c52e2253fbfec45a3b11cbda9e4a5b45 Mon Sep 17 00:00:00 2001 From: Nuno Rodrigues Date: Tue, 16 Jul 2019 13:40:46 +0000 Subject: [PATCH] Fix a linting error --- tests/test_connection.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tests/test_connection.py b/tests/test_connection.py index 78f7e52f..57141958 100644 --- a/tests/test_connection.py +++ b/tests/test_connection.py @@ -272,7 +272,10 @@ class ConnectionTest(unittest.TestCase): self.assertIsInstance(conn, mongomock.MongoClient) disconnect_all() - class SomeDocument(Document): pass + + class SomeDocument(Document): + pass + conn = connect(host="mongomock://localhost:27017/mongoenginetest8") some_document = SomeDocument() some_document.save()