General code clean up.

This commit is contained in:
Scott Idem
2021-08-23 12:55:35 -04:00
parent 683597e2bf
commit 8a92ffb6ba

View File

@@ -265,7 +265,7 @@ async def get_api_obj(
@router.delete('/{obj_id}', response_model=Resp_Body_Base) @router.delete('/{obj_id}', response_model=Resp_Body_Base)
async def delete_api_obj( async def delete_api_obj(
obj_id: str = Query(..., min_length=1, max_length=22), obj_id: str = Query(..., min_length=11, max_length=22),
x_account_id: str = Header(...), x_account_id: str = Header(...),
response: Response = Response, response: Response = Response,
): ):