Skip to content

Commit

Permalink
Fix flake8 issue in delivery.py
Browse files Browse the repository at this point in the history
Odd — this isn't picked up by my local version of flake8!
  • Loading branch information
sde1000 committed Sep 10, 2023
1 parent f820539 commit 08ad82d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion quicktill/delivery.py
Original file line number Diff line number Diff line change
Expand Up @@ -714,7 +714,7 @@ def confirmed(self):
def updatesupplier():
log.info("Update supplier")
sl = td.s.query(Supplier).order_by(Supplier.name).all()
m = [(x.name, editsupplier, (lambda a:None, x)) for x in sl]
m = [(x.name, editsupplier, (lambda a: None, x)) for x in sl]
ui.menu(m, blurb="Select a supplier from the list and press Cash/Enter.",
title="Edit Supplier")

Expand Down

0 comments on commit 08ad82d

Please sign in to comment.