Skip to content

Commit

Permalink
Merge pull request #261 from Crown-Commercial-Service/etl_endpoint_up…
Browse files Browse the repository at this point in the history
…date

Etl endpoint update
  • Loading branch information
bala-bc authored May 5, 2022
2 parents bb2a4fd + cce9cc0 commit 49e53a5
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__ = '23.1.1'
__version__ = '23.1.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 @@ -1042,9 +1042,9 @@ def get_framework_agreement(self, framework_agreement_id):
return self._get(
"/agreements/{}".format(framework_agreement_id))

def get_supplier_framework_agreement(self, framework_slug, supplier_id):
def get_supplier_framework_agreement(self, framework_slug):
return self._get(
"/agreements/{}/{}".format(framework_slug, supplier_id))
"/agreements/{}".format(framework_slug))

def create_framework_agreement(self, supplier_id, framework_slug, user=None):
return self._post_with_updated_by(
Expand Down

0 comments on commit 49e53a5

Please sign in to comment.