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 81f5395 commit b6521ebCopy full SHA for b6521eb
cyclonedx/_internal/compare.py
@@ -63,7 +63,7 @@ class ComparableDict(ComparableTuple):
63
Allows comparison of dictionaries, allowing for missing/None values.
64
"""
65
66
- def __new__(cls, d: dict) -> 'ComparableDict':
+ def __new__(cls, d: Dict[Any, Any]) -> 'ComparableDict':
67
return super(ComparableDict, cls).__new__(cls, sorted(d.items()))
68
69
0 commit comments