Skip to content

Commit 42fec20

Browse files
committed
chore: lint unused import
1 parent 0d63cd4 commit 42fec20

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/functional/test_logger_utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
from enum import Enum
77

88
import pytest
9-
from pytest_mock import MockerFixture
109

1110
from aws_lambda_powertools import Logger
1211
from aws_lambda_powertools.logging import formatter, utils
@@ -45,6 +44,7 @@ def capture_multiple_logging_statements_output(stdout):
4544
return [json.loads(line.strip()) for line in stdout.getvalue().split("\n") if line]
4645

4746

47+
@pytest.fixture
4848
def service_name():
4949
chars = string.ascii_letters + string.digits
5050
return "".join(random.SystemRandom().choice(chars) for _ in range(15))

0 commit comments

Comments
 (0)