From 99b25b29becb2be4ae606243efc891f02a7c206b Mon Sep 17 00:00:00 2001 From: Aevann1 Date: Mon, 26 Jul 2021 01:25:46 +0200 Subject: [PATCH] df --- drama/classes/comment.py | 4 ---- drama/classes/submission.py | 2 -- 2 files changed, 6 deletions(-) diff --git a/drama/classes/comment.py b/drama/classes/comment.py index 9a8c51501f..260926c3fa 100644 --- a/drama/classes/comment.py +++ b/drama/classes/comment.py @@ -209,7 +209,6 @@ class Comment(Base, Age_times, Scores, Stndrd, Fuzzing): 'is_banned': bool(self.is_banned), 'deleted_utc': self.deleted_utc, 'is_nsfw': self.over_18, - 'is_offensive': self.is_offensive, 'permalink': self.permalink, 'post_id': self.post.base36id, 'score': self.score_fuzzed, @@ -350,9 +349,6 @@ class Comment(Base, Age_times, Scores, Stndrd, Fuzzing): if not v: return False - - if self.is_offensive and v.hide_offensive: - return True if self.is_bot and v.hide_bot: return True diff --git a/drama/classes/submission.py b/drama/classes/submission.py index 2bdb75fb49..ae81f763b6 100644 --- a/drama/classes/submission.py +++ b/drama/classes/submission.py @@ -72,7 +72,6 @@ class Submission(Base, Stndrd, Age_times, Scores, Fuzzing): score_hot = Column(Float, default=0) score_top = Column(Float, default=1) score_activity = Column(Float, default=0) - is_offensive = Column(Boolean, default=False) author = relationship( "User", lazy="joined", @@ -288,7 +287,6 @@ class Submission(Base, Stndrd, Age_times, Scores, Fuzzing): 'upvotes': self.upvotes_fuzzed, 'downvotes': self.downvotes_fuzzed, #'award_count': self.award_count, - 'is_offensive': self.is_offensive, 'meta_title': self.meta_title, 'meta_description': self.meta_description, 'voted': self.voted