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 b09164c commit 98781e1Copy full SHA for 98781e1
aws_lambda_powertools/utilities/data_classes/common.py
@@ -12,7 +12,7 @@ def __getitem__(self, key: str) -> Any:
12
13
def __eq__(self, other: Any) -> bool:
14
if not isinstance(other, DictWrapper):
15
- return NotImplemented
+ return False
16
17
return self._data == other._data
18
0 commit comments