gsi-upm / sematch

semantic similarity framework for knowledge graph
http://gsi-upm.github.io/sematch/
Other
432 stars 110 forks source link

Update utility.py #41

Closed ishijo closed 1 year ago

ishijo commented 1 year ago

Since collections has been updated due to which the Hashable attribute is now present inside collections.abc, I changed "if not isinstance(args, collections.Hashable):" to "if not isinstance(args, collections.abc.Hashable):" in the sematch/utility.py file.

balkian commented 1 year ago

Thank you for your contribution!