Skip to content

Commit

Permalink
Merge pull request #116 from Crown-Commercial-Service/fix-issue-with-…
Browse files Browse the repository at this point in the history
…paramater-name

Snake case the parameter from lotQuestionsResponse to lot_questions_response
  • Loading branch information
tim-s-ccs authored Aug 1, 2024
2 parents bed5bc1 + 25644e7 commit b0fa137
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion dmapiclient/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = '26.0.1'
__version__ = '26.0.2'

from .errors import APIError, HTTPError, InvalidResponse # noqa
from .errors import REQUEST_ERROR_STATUS_CODE, REQUEST_ERROR_MESSAGE # noqa
Expand Down
4 changes: 2 additions & 2 deletions dmapiclient/data.py
Original file line number Diff line number Diff line change
Expand Up @@ -1505,12 +1505,12 @@ def update_lot_questions_response(
supplier_id,
framework_slug,
lot_slug,
lotQuestionsResponse,
lot_questions_response,
user=None,
page_questions=None
):
data = {
"lotQuestionsResponse": lotQuestionsResponse,
"lotQuestionsResponse": lot_questions_response,
}

if page_questions is not None:
Expand Down

0 comments on commit b0fa137

Please sign in to comment.