summaryrefslogtreecommitdiff
path: root/tests/test_object.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_object.py')
-rw-r--r--tests/test_object.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_object.py b/tests/test_object.py
index 9f1e728..f2725f2 100644
--- a/tests/test_object.py
+++ b/tests/test_object.py
@@ -124,7 +124,7 @@ def test_nested_list2(array):
def test_list_apis():
a = pikepdf.Array([1, 2, 3])
- a[1] = None # pylint: disable=unsupported-assignment-operation
+ a[1] = None
assert a[1] is None
assert len(a) == 3
del a[1]