models.py: Fix Tagable.assigned_tags to raise NotImplementedError

master
Felix Stupp 3 years ago
parent 04d73f253d
commit 37e7d602e8
Signed by: zocker
GPG Key ID: 93E1BD26F6B02FB7

@ -58,7 +58,7 @@ class Tagable:
"""
Tags which are directly assigned to this object by the user or automatic actions.
"""
return NotImplementedError("")
raise NotImplementedError("")
@property
def inherited_tags(self) -> Set[Tag]:

Loading…
Cancel
Save