Skip to content

Commit

Permalink
i love flake8 so much
Browse files Browse the repository at this point in the history
  • Loading branch information
Timur5050 committed Jun 17, 2024
1 parent 57e3959 commit aa711be
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/shops.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ def give_purchase_receipt(
client: Customer
) -> None:
print(f"\nDate: "
f"{datetime.datetime.now().strftime("%d/%m/%Y %H:%M:%S")}")
f'{datetime.datetime.now().strftime("%d/%m/%Y %H:%M:%S")}')
print(f"Thanks, {client.name}, for your purchase!\nYou have bought:")
for product in client.product_cart:
current_product = (client.product_cart[product]
Expand Down

0 comments on commit aa711be

Please sign in to comment.