diff --git a/internetarchive/item.py b/internetarchive/item.py index 7202976b..e9201ef7 100644 --- a/internetarchive/item.py +++ b/internetarchive/item.py @@ -131,8 +131,7 @@ def __hash__(self) -> int: without_excluded_keys = { k: v for k, v in self.item_metadata.items() if k not in self.EXCLUDED_ITEM_METADATA_KEYS} - return hash(json.dumps(without_excluded_keys, - sort_keys=True, check_circular=False)) # type: ignore + return hash(json.dumps(without_excluded_keys, sort_keys=True)) # type: ignore class Item(BaseItem):