s
All checks were successful
Deploy App to Docker / deploy (push) Successful in 41s

This commit is contained in:
zman 2025-04-07 16:53:51 -04:00
parent 11ed680347
commit a1f15d6e6a

View File

@ -245,7 +245,7 @@ class TCGPlayerAPIService:
with open(output_filename, 'wb') as f:
f.write(response.content)
return filename
return output_filename
def get_pull_sheet_for_orders(self, order_ids: list[str]):
url = f"{self.config.ORDER_BASE_URL}/pull-sheets/export{self.config.API_VERSION}"
@ -262,7 +262,7 @@ class TCGPlayerAPIService:
with open(output_filename, 'wb') as f:
f.write(response.content)
return filename
return output_filename
def get_address_labels_pdf(self, order_ids: list[str]):
labels_html = []