From 563d8bfe689ee8f0efab714d57550bb6ccaf323b Mon Sep 17 00:00:00 2001 From: Oleg Broytman Date: Sun, 15 Oct 2017 16:26:58 +0300 Subject: [PATCH] Cleanup: Fix flake8 E225 missing whitespace around operator --- mimedecode.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mimedecode.py b/mimedecode.py index 2fccbcc..36cc340 100755 --- a/mimedecode.py +++ b/mimedecode.py @@ -105,7 +105,7 @@ def decode_header_param(msg, header, param): def _get_exceptions(list): - return [x[1:].lower() for x in list[1:] if x[0]=='-'] + return [x[1:].lower() for x in list[1:] if x[0] == '-'] def _decode_headers_params(msg, header, decode_all_params, param_list): if decode_all_params: -- 2.39.2