Skip to content

Commit 06fe967

Browse files
committed
chore: remove unused TypeVar
1 parent 8692b40 commit 06fe967

File tree

1 file changed

+1
-3
lines changed
  • aws_lambda_powertools/utilities/data_classes

1 file changed

+1
-3
lines changed

aws_lambda_powertools/utilities/data_classes/common.py

+1-3
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
import json
33
from collections.abc import Mapping
44
from functools import cached_property
5-
from typing import Any, Callable, Dict, Iterator, List, Optional, TypeVar, overload
5+
from typing import Any, Callable, Dict, Iterator, List, Optional, overload
66

77
from aws_lambda_powertools.shared.headers_serializer import BaseHeadersSerializer
88
from aws_lambda_powertools.utilities.data_classes.shared_functions import (
@@ -11,8 +11,6 @@
1111
get_query_string_value,
1212
)
1313

14-
T = TypeVar("T")
15-
1614

1715
class DictWrapper(Mapping):
1816
"""Provides a single read only access to a wrapper dict"""

0 commit comments

Comments
 (0)