Skip to content

Commit

Permalink
Update orders.py
Browse files Browse the repository at this point in the history
  • Loading branch information
alexdlaird committed Oct 27, 2024
1 parent 6bbee59 commit 2fc2f49
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion amazonorders/orders.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ def get_order_history(self,
self.amazon_session.get(order.order_details_link)
order_details_tag = util.select_one(self.amazon_session.last_response_parsed,
self.config.selectors.ORDER_DETAILS_ENTITY_SELECTOR)
order: Order = self.config.order_cls(order_details_tag, self.config, full_details=True, clone=order)
order = self.config.order_cls(order_details_tag, self.config, full_details=True, clone=order)

orders.append(order)

Expand Down

0 comments on commit 2fc2f49

Please sign in to comment.