Skip to content

Commit

Permalink
remove duplicates
Browse files Browse the repository at this point in the history
  • Loading branch information
ohld committed Jun 18, 2024
1 parent 35d4e21 commit f5ca8e7
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions src/flows/rewards/service.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,6 @@ async def get_all_uploaded_memes_weekly_ru() -> list[dict[str, Any]]:
ON M.meme_source_id = S.id
LEFT JOIN meme_stats MS
ON M.id = MS.meme_id
LEFT JOIN user_language UL
ON S.added_by = UL.user_id
LEFT JOIN "user" U
ON U.id = S.added_by
WHERE 1=1
Expand Down Expand Up @@ -51,8 +49,6 @@ async def get_all_uploaded_memes_weekly_en() -> list[dict[str, Any]]:
ON M.meme_source_id = S.id
LEFT JOIN meme_stats MS
ON M.id = MS.meme_id
LEFT JOIN user_language UL
ON S.added_by = UL.user_id
LEFT JOIN "user" U
ON U.id = S.added_by
WHERE 1=1
Expand Down

0 comments on commit f5ca8e7

Please sign in to comment.