From 535a731b9310a07b10a8649313c8bd8fafcdadea Mon Sep 17 00:00:00 2001 From: Simon Willison Date: Tue, 23 Jul 2019 09:41:34 +0200 Subject: [PATCH] Fixed lint error --- tests/test_create.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_create.py b/tests/test_create.py index 4634191..288a8ee 100644 --- a/tests/test_create.py +++ b/tests/test_create.py @@ -733,4 +733,4 @@ def test_cannot_provide_both_filename_and_memory(): with pytest.raises( AssertionError, match="Either specify a filename_or_conn or pass memory=True" ): - db = Database("/tmp/foo.db", memory=True) + Database("/tmp/foo.db", memory=True)