From: Stephen Finucane Date: Tue, 4 Apr 2017 11:16:55 +0000 (+0100) Subject: trivial: Resolve PEP8 issue X-Git-Tag: v2.0.0-rc1~58 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3631d22a766b842626ed9416da27613966cdf0e6;p=thirdparty%2Fpatchwork.git trivial: Resolve PEP8 issue There's an unused variable. Signed-off-by: Stephen Finucane Fixes: 9b81f1ae ("REST: Add '/bundle' endpoint") --- diff --git a/patchwork/tests/test_rest_api.py b/patchwork/tests/test_rest_api.py index 3a84f0f8..867602a8 100644 --- a/patchwork/tests/test_rest_api.py +++ b/patchwork/tests/test_rest_api.py @@ -722,7 +722,6 @@ class TestBundleAPI(APITestCase): def test_detail(self): """Validate we can get a specific bundle.""" - user = create_user() bundle = create_bundle(public=True) resp = self.client.get(self.api_url(bundle.id))