forked from rDrama/rDrama
1
0
Fork 0
master
Aevann1 2021-07-26 21:46:52 +02:00
parent 67ac9f4004
commit 0b6fb9f1b3
1 changed files with 0 additions and 9 deletions

View File

@ -20,10 +20,6 @@ class Vote(Base):
def __init__(self, *args, **kwargs): def __init__(self, *args, **kwargs):
if "created_utc" not in kwargs:
kwargs["created_utc"] = int(time())
super().__init__(*args, **kwargs) super().__init__(*args, **kwargs)
def __repr__(self): def __repr__(self):
@ -34,7 +30,6 @@ class Vote(Base):
data={ data={
"user_id": self.user_id, "user_id": self.user_id,
"submission_id":self.submission_id, "submission_id":self.submission_id,
"created_utc": self.created_utc,
"vote_type":self.vote_type "vote_type":self.vote_type
} }
return data return data
@ -62,9 +57,6 @@ class CommentVote(Base):
comment = relationship("Comment", lazy="subquery") comment = relationship("Comment", lazy="subquery")
def __init__(self, *args, **kwargs): def __init__(self, *args, **kwargs):
if "created_utc" not in kwargs:
kwargs["created_utc"] = int(time())
super().__init__(*args, **kwargs) super().__init__(*args, **kwargs)
@ -76,7 +68,6 @@ class CommentVote(Base):
data={ data={
"user_id": self.user_id, "user_id": self.user_id,
"comment_id":self.comment_id, "comment_id":self.comment_id,
"created_utc": self.created_utc,
"vote_type":self.vote_type "vote_type":self.vote_type
} }
return data return data