From 5dee757041d0ca933da3519c2deb28c732740151 Mon Sep 17 00:00:00 2001 From: Andrew Brookins Date: Fri, 19 Nov 2021 08:13:50 -0800 Subject: [PATCH] Add linted change --- tests/conftest.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/conftest.py b/tests/conftest.py index 69c8ace..c68768c 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -41,6 +41,7 @@ def cleanup_keys(request): # Always use the sync Redis connection with finalizer. Setting up an # async finalizer should work, but I'm not suer how yet! from redis_om.connections import get_redis_connection as get_sync_redis + _delete_test_keys(TEST_PREFIX, get_sync_redis()) request.addfinalizer(cleanup_keys)