File: util.py

package info (click to toggle)
python-pynetbox 7.4.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,164 kB
  • sloc: python: 3,568; makefile: 12
file content (3 lines) | stat: -rw-r--r-- 87 bytes parent folder | download | duplicates (3)
1
2
3
class Hashabledict(dict):
    def __hash__(self):
        return hash(frozenset(self))