From 45b95c63d7e8e0f035897d73b117382c97560c76 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adri=C3=A1n=20Chaves?= Date: Tue, 10 Jan 2023 11:30:06 +0100 Subject: [PATCH] Address issues reported by pylint --- tests/test_utils_response.py | 4 ++-- tox.ini | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/test_utils_response.py b/tests/test_utils_response.py index 869665406..6c882b386 100644 --- a/tests/test_utils_response.py +++ b/tests/test_utils_response.py @@ -238,7 +238,7 @@ PRE_XTRACTMIME_SCENARIOS = ( 'headers': Headers( { 'Content-Disposition': [ - f'attachment; filename="a.xml"', + 'attachment; filename="a.xml"', ] } ), @@ -254,7 +254,7 @@ PRE_XTRACTMIME_SCENARIOS = ( 'headers': Headers( { 'Content-Disposition': [ - f'attachment; filename="a.html"', + 'attachment; filename="a.html"', ], "Content-Type": "text/xml", } diff --git a/tox.ini b/tox.ini index e1c52be61..348f298c1 100644 --- a/tox.ini +++ b/tox.ini @@ -4,7 +4,7 @@ # and then run "tox" from this directory. [tox] -envlist = security,flake8,py +envlist = security,flake8,pylint,py minversion = 1.7.0 [testenv]