Skip to content

Commit 670c7a1

Browse files
gh-143005: trim trailing whitespace
1 parent d17521c commit 670c7a1

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Lib/test/test_ctypes/test_arrays.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,12 +102,12 @@ def test_simple(self):
102102
# cannot delete items
103103
with self.assertRaises(TypeError):
104104
del ca[0]
105-
105+
106106
def test_ctypes_array_class_assignment_incompatible(self):
107107
A = c_long * 3
108108
B = c_long * 5
109109
x = A(1, 2, 3)
110-
110+
111111
with self.assertRaises(TypeError):
112112
x.__class__ = B
113113

0 commit comments

Comments
 (0)