Skip to content

Commit 5beb867

Browse files
committed
Fixes ci
1 parent 2e68eee commit 5beb867

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/test_io/test_io_pickle.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@
55

66
def test_io_pickle():
77
"""Tests how pickle protocol works for containers."""
8-
assert IO(1).__getstate__() == 1
8+
assert IO(1).__getstate__() == 1 # noqa: WPS609
99

1010

1111
def test_io_pickle_restore():
1212
"""Ensures that object can be restored."""
1313
container = IO(2)
14-
container.__setstate__(1)
14+
container.__setstate__(1) # noqa: WPS609
1515
assert container == IO(1)

0 commit comments

Comments
 (0)