From c075d33997f475e106485bb9db5b9bef75f4beb6 Mon Sep 17 00:00:00 2001 From: Maximilian Hils Date: Thu, 17 Jun 2021 20:02:40 +0200 Subject: [PATCH] minor style fix --- mitmproxy/addons/next_layer.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/mitmproxy/addons/next_layer.py b/mitmproxy/addons/next_layer.py index c54171333..8b544e315 100644 --- a/mitmproxy/addons/next_layer.py +++ b/mitmproxy/addons/next_layer.py @@ -131,11 +131,11 @@ class NextLayer: return ret # 3. Setup the HTTP layer for a regular HTTP proxy or an upstream proxy. - if any([ - s(modes.HttpProxy), + if ( + s(modes.HttpProxy) or # or a "Secure Web Proxy", see https://www.chromium.org/developers/design-documents/secure-web-proxy - s(modes.HttpProxy, layers.ClientTLSLayer), - ]): + s(modes.HttpProxy, layers.ClientTLSLayer) + ): if ctx.options.mode == "regular": return layers.HttpLayer(context, HTTPMode.regular) else: