I had a similar problem. In my code I had a line
@bp.route('/<init:id>/delete', method=('POST'))
The keyword method needs to be changed to methods(with an s)
I had a similar problem. In my code I had a line
@bp.route('/<init:id>/delete', method=('POST'))
The keyword method needs to be changed to methods(with an s)