diff options
Diffstat (limited to 'com.py')
-rw-r--r-- | com.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/com.py b/com.py index 3ebb948..6bc9a63 100644 --- a/com.py +++ b/com.py @@ -44,6 +44,7 @@ class FilterableNote: reactions: int renotes: int visibility: Visibility + cw: str def thread(self) -> List["FilterableNote"]: acc = [] @@ -73,6 +74,7 @@ class FilterableNote: "when": self.when.isoformat(), "reactions": self.reactions, "renotes": self.renotes, + "cw": self.cw, } |