We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6ce10d2 commit b09164cCopy full SHA for b09164c
aws_lambda_powertools/utilities/data_classes/common.py
@@ -10,7 +10,7 @@ def __init__(self, data: Dict[str, Any]):
10
def __getitem__(self, key: str) -> Any:
11
return self._data[key]
12
13
- def __eq__(self, other):
+ def __eq__(self, other: Any) -> bool:
14
if not isinstance(other, DictWrapper):
15
return NotImplemented
16
0 commit comments