From abe333022ccf1dd8065c1bedfb94a65f3cf2a9d8 Mon Sep 17 00:00:00 2001 From: Prateek Thakare Date: Wed, 3 Jan 2024 14:20:10 +0530 Subject: [PATCH] Fixed response typo --- src/new-scanner-integrations/new-scanner-integration-api.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/new-scanner-integrations/new-scanner-integration-api.md b/src/new-scanner-integrations/new-scanner-integration-api.md index 88d196d..9461c12 100644 --- a/src/new-scanner-integrations/new-scanner-integration-api.md +++ b/src/new-scanner-integrations/new-scanner-integration-api.md @@ -19,7 +19,7 @@ As a first step to integrate a new scanner, answer the below questions: Now that we have a clear understanding of the expected input and output from the tool, let's begin the process of creating the scanner class. As previously indicated [here](/./mantis/basics-mantis-code/scanner-base-class.md), we are required to implement three functions: - get_api_calls() -- parse_reponse() +- parse_response() - db_operations() ## Creating the API Class @@ -58,7 +58,7 @@ This function is required to parse what the API outputs and insert it into the d ```python -def parse_reponse(self, response): +def parse_response(self, response): output_dict_list = [] response_json = response.json() for every_cert in response_json: