From 4355301417321dcd8e581a9d32b5ddc44de1bfc8 Mon Sep 17 00:00:00 2001 From: alufers Date: Mon, 13 Mar 2023 13:03:23 +0100 Subject: [PATCH] delete print statements in mitmproxy2swagger.py --- mitmproxy2swagger/mitmproxy2swagger.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/mitmproxy2swagger/mitmproxy2swagger.py b/mitmproxy2swagger/mitmproxy2swagger.py index 9c22bd3..4a1d071 100755 --- a/mitmproxy2swagger/mitmproxy2swagger.py +++ b/mitmproxy2swagger/mitmproxy2swagger.py @@ -152,8 +152,6 @@ def main(): # new endpoints will be added here so that they can be added as comments in the swagger file new_path_templates = [] for path in path_templates: - print("Compiling path " + path) - print("Compiled to regex: " + path_to_regex(path)) re.compile(path_to_regex(path)) path_template_regexes = [re.compile(path_to_regex(path)) for path in path_templates]