Makefile: remove prettier (#705)

* remove prettier

* black
This commit is contained in:
calle
2022-07-05 17:18:22 +02:00
committed by GitHub
parent c2399cf9aa
commit 17c79cd044
7 changed files with 26 additions and 10 deletions
+3 -1
View File
@@ -52,7 +52,9 @@ async def api_tpos_delete(
@tpos_ext.post("/api/v1/tposs/{tpos_id}/invoices", status_code=HTTPStatus.CREATED)
async def api_tpos_create_invoice(amount: int = Query(..., ge=1), tipAmount: int = None, tpos_id: str = None):
async def api_tpos_create_invoice(
amount: int = Query(..., ge=1), tipAmount: int = None, tpos_id: str = None
):
tpos = await get_tpos(tpos_id)
if not tpos: