Skip to content

Commit

Permalink
DEL: useless kwargs
Browse files Browse the repository at this point in the history
  • Loading branch information
dalmia committed Jan 27, 2022
1 parent 79d8d96 commit c6fa4f7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions plio/queries.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from typing import Tuple


def get_plio_latest_sessions_query(plio_uuid: str, schema: str, **kwargs):
def get_plio_latest_sessions_query(plio_uuid: str, schema: str):
"""Returns the most recent sessions for each user for the given plio
:param plio_uuid: The plio to fetch the details for
Expand All @@ -26,7 +26,7 @@ def get_plio_latest_sessions_query(plio_uuid: str, schema: str, **kwargs):
WHERE rank = 1 AND plio_uuid = '{plio_uuid}'"""


def get_plio_latest_responses_query(schema: str, session_ids: Tuple[int], **kwargs):
def get_plio_latest_responses_query(schema: str, session_ids: Tuple[int]):
"""
Returns the responses of each user to the given plio based on
their most recent session.
Expand Down

0 comments on commit c6fa4f7

Please sign in to comment.