Skip to content

Commit

Permalink
refactor: access customer_id as subscript
Browse files Browse the repository at this point in the history
  • Loading branch information
Muhammad Noyan Aziz authored and Muhammad Noyan Aziz committed Nov 18, 2024
1 parent 25a313d commit 39ab1f4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion commerce_coordinator/apps/commercetools/pipeline.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ def run_filter(self, request, params, order_data): # pylint: disable=arguments-
try:
ct_api_client = CommercetoolsAPIClient()
ct_orders = ct_api_client.get_orders_for_customer(
customer_id=params.get("customer_id"),
customer_id=params["customer_id"],
email=params["email"],
username=params["username"],
edx_lms_user_id=params["edx_lms_user_id"],
Expand Down

0 comments on commit 39ab1f4

Please sign in to comment.