From 020e6f74ef3f96976fa75189f38214bc62108e1e Mon Sep 17 00:00:00 2001 From: Mouse Reeve Date: Sat, 17 Apr 2021 11:57:06 -0700 Subject: [PATCH] Python formatting --- bookwyrm/activitypub/image.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/bookwyrm/activitypub/image.py b/bookwyrm/activitypub/image.py index 863388a78..a7120ce4b 100644 --- a/bookwyrm/activitypub/image.py +++ b/bookwyrm/activitypub/image.py @@ -12,7 +12,9 @@ class Document(ActivityObject): type: str = "Document" id: str = None + @dataclass(init=False) class Image(Document): """ an image """ + type: str = "Image"