From ec7622b1a12c8bdf2a52b6acdc5b680c618554f8 Mon Sep 17 00:00:00 2001 From: Aayush Thapa Date: Thu, 21 Mar 2024 13:40:19 -0700 Subject: [PATCH] remove logging import --- integration/combination/test_function_with_cloudwatch_log.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/integration/combination/test_function_with_cloudwatch_log.py b/integration/combination/test_function_with_cloudwatch_log.py index 30799cdfc..3cf01b3ca 100644 --- a/integration/combination/test_function_with_cloudwatch_log.py +++ b/integration/combination/test_function_with_cloudwatch_log.py @@ -1,12 +1,9 @@ -import logging from unittest.case import skipIf from integration.config.service_names import LOGS from integration.helpers.base_test import BaseTest from integration.helpers.resource import current_region_does_not_support -LOG = logging.getLogger(__name__) - @skipIf( current_region_does_not_support([LOGS]), "Logs resource part of this test is not supported in this testing region"