aboutcode-org / aboutcode-org/scancode-toolkit
TypeError: unhashable type: 'License'
Offen
#3,425
0 Kommentare
0 Reaktionen
1 zugewiesene Person
Beansprucht von @AyanSinhaMahapatra
Auf GitHub ansehen
bug
- Vorherrschende Sprache
- Python
- Sterne
- 2.6k
- Forks
- 791
- Ø Merge
- 1 T. 12 Std.
- Gemergte PRs (30 T.)
- 5
Beschreibung
I would like to get a set of unique `licensedcode.models.License` objects but this model is missing the `__hash__` required for this purpose. Since the `key` field is unique, I'm guessing it could be use for the hash.
Note that this behavior is properly implemented for the `license_expression.LicenseSymbol` but not once we go down to the actual `License` objects.
```
>>> from licensedcode.models import License
>>> set([License(key="k1"), License(key="k1"), License(key="k2")])
Traceback (most recent call last):
File "", line 1, in
TypeError: unhashable type: 'License'
```
Beitragsleitfaden
Bewertung
Dieses Issue wurde noch nicht bewertet.