Remove redundant activitypub dataclass

This commit is contained in:
Mouse Reeve
2021-02-19 11:16:01 -08:00
parent e707374888
commit fb98ef4b38
4 changed files with 4 additions and 10 deletions

View File

@ -132,13 +132,7 @@ class Add(Verb):
@dataclass(init=False)
class AddBook(Add):
'''Add activity that's aware of the book obj '''
object: Edition
@dataclass(init=False)
class AddListItem(AddBook):
class AddListItem(Add):
'''Add activity that's aware of the book obj '''
notes: str = None
order: int = 0