diff options
| author | John L. Villalovos <john@sodarock.com> | 2021-04-17 14:59:35 -0700 |
|---|---|---|
| committer | John L. Villalovos <john@sodarock.com> | 2021-04-18 08:26:07 -0700 |
| commit | 40f4ab20ba0903abd3d5c6844fc626eb264b9a6a (patch) | |
| tree | b4b8ca325f0e96a2d07c0bf0b3e99153ef7f4f56 /gitlab/tests/objects | |
| parent | ff21eb664871904137e6df18308b6e90290ad490 (diff) | |
| download | gitlab-40f4ab20ba0903abd3d5c6844fc626eb264b9a6a.tar.gz | |
chore: fix F841 errors reported by flake8
Local variable name is assigned to but never used
https://www.flake8rules.com/rules/F841.html
Diffstat (limited to 'gitlab/tests/objects')
| -rw-r--r-- | gitlab/tests/objects/test_appearance.py | 2 |
1 files changed, 1 insertions, 1 deletions
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) |
