From 4b21d9cfb37511d68c5acd8e495e8227241f73dd Mon Sep 17 00:00:00 2001 From: Daniel Yip Date: Mon, 13 Oct 2025 09:30:01 +0100 Subject: [PATCH] Import order --- lambdas/redis_sync/tests/test_handler.py | 3 ++- lambdas/redis_sync/tests/test_handler_decorator.py | 1 + 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/lambdas/redis_sync/tests/test_handler.py b/lambdas/redis_sync/tests/test_handler.py index eb2e10e26..e858ba262 100644 --- a/lambdas/redis_sync/tests/test_handler.py +++ b/lambdas/redis_sync/tests/test_handler.py @@ -4,9 +4,10 @@ import unittest from unittest.mock import patch -import redis_sync from constants import RedisCacheKey +import redis_sync + class TestHandler(unittest.TestCase): s3_vaccine = { diff --git a/lambdas/redis_sync/tests/test_handler_decorator.py b/lambdas/redis_sync/tests/test_handler_decorator.py index a61882b45..7dd44698e 100644 --- a/lambdas/redis_sync/tests/test_handler_decorator.py +++ b/lambdas/redis_sync/tests/test_handler_decorator.py @@ -6,6 +6,7 @@ from common.s3_event import S3EventRecord from constants import RedisCacheKey + from redis_sync import handler