diff options
author | mia <mia@mia.jetzt> | 2024-11-20 06:52:59 -0800 |
---|---|---|
committer | mia <mia@mia.jetzt> | 2024-11-20 06:52:59 -0800 |
commit | 88394c7d829c5e25be56f3efffbc9805b64736a5 (patch) | |
tree | 7121e65d652643589857819b5123214306346f32 /com.py | |
parent | 7e060e5cf2656a0a53d41ea0ff42b753316cd441 (diff) | |
download | scrubber-88394c7d829c5e25be56f3efffbc9805b64736a5.tar.gz scrubber-88394c7d829c5e25be56f3efffbc9805b64736a5.zip |
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, } |