Fixes formatting

This commit is contained in:
Oleg Silkin 2019-07-30 01:15:04 -04:00
parent acbcac456f
commit c3a4eef9ee

View file

@ -125,7 +125,7 @@ def get_comment_ids(conn: sqlite3.Connection, claim_id: str, parent_id: str = No
curs = conn.execute(""" curs = conn.execute("""
SELECT comment_id FROM COMMENTS_ON_CLAIMS SELECT comment_id FROM COMMENTS_ON_CLAIMS
WHERE claim_id = ? AND parent_id IS NULL LIMIT ? OFFSET ? WHERE claim_id = ? AND parent_id IS NULL LIMIT ? OFFSET ?
""", (claim_id, page_size, page_size * abs(page - 1),) """, (claim_id, page_size, page_size*abs(page - 1),)
) )
else: else:
curs = conn.execute(""" curs = conn.execute("""