From ce87843c9caab761a770110df340cb4c0a1a7c83 Mon Sep 17 00:00:00 2001 From: Florents Tselai Date: Sun, 23 Jun 2024 20:19:28 +0300 Subject: [PATCH] Formatting --- tests/conftest.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/tests/conftest.py b/tests/conftest.py index fb7bc56..1dc46dc 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -30,10 +30,7 @@ def fresh_db_path(db_path): @pytest.fixture def existing_db_path(fresh_db_path): db = Database(fresh_db_path) - table = db.create_table( - "prompts", - {"prompt": str, "generated": str} - ) + table = db.create_table("prompts", {"prompt": str, "generated": str}) table.insert({"prompt": "hello world!"}) table.insert({"prompt": "how are you?"})