From 40f4ab20ba0903abd3d5c6844fc626eb264b9a6a Mon Sep 17 00:00:00 2001 From: "John L. Villalovos" Date: Sat, 17 Apr 2021 14:59:35 -0700 Subject: chore: fix F841 errors reported by flake8 Local variable name is assigned to but never used https://www.flake8rules.com/rules/F841.html --- gitlab/tests/objects/test_appearance.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gitlab/tests/objects') diff --git a/gitlab/tests/objects/test_appearance.py b/gitlab/tests/objects/test_appearance.py index 7c52301..43ea574 100644 --- a/gitlab/tests/objects/test_appearance.py +++ b/gitlab/tests/objects/test_appearance.py @@ -63,4 +63,4 @@ def test_get_update_appearance(gl, resp_application_appearance): def test_update_appearance(gl, resp_application_appearance): - resp = gl.appearance.update(title=new_title, description=new_description) + gl.appearance.update(title=new_title, description=new_description) -- cgit v1.2.1