remove extra linefeed

pull/136/head
Aevann 2023-03-01 22:40:41 +02:00
parent 535b07b230
commit e7aa739e62
1 changed files with 0 additions and 1 deletions

View File

@ -473,7 +473,6 @@ class User(Base):
@lazy
def any_block_exists(self, other):
return g.db.query(UserBlock).filter(
or_(and_(UserBlock.user_id == self.id, UserBlock.target_id == other.id), and_(
UserBlock.user_id == other.id, UserBlock.target_id == self.id))).first()