ran black

This commit is contained in:
rosechar 2020-04-15 00:11:48 -04:00
parent e1632af0b5
commit 89d0f75069

View file

@ -705,14 +705,15 @@ def delete_bill(bill_id):
url = url_for(".undo_delete_bill")
alert = (
'The bill has been deleted <a class="alert-link" href="'
+ url
+ '" id="undo"> undo </a>'
'The bill has been deleted <a class="alert-link" href="'
+ url
+ '" id="undo"> undo </a>'
)
flash(Markup(alert))
return redirect(url_for(".list_bills"))
@main.route("/<project_id>/undo")
def undo_delete_bill():
bill = Bill()