Skip to content

Commit 68bb36c

Browse files
authored
fix: crossed commits from #548 and #539 (#549)
One updated MyPy, the other had an issue the new MyPy didn't like.
1 parent cced209 commit 68bb36c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/tests/test_buffer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ def finalizer() -> None:
2828
("buffer_class", "readonly"),
2929
[
3030
(bytearray, False),
31-
(bytes, True), # type: ignore[list-item]
31+
(bytes, True),
3232
],
3333
)
3434
def test_finalizing_buffer_preserves_readonly(buffer_class: type, readonly: bool) -> None:

0 commit comments

Comments
 (0)