Skip to content

Commit 41f01a6

Browse files
committed
lint fix
1 parent 40a1dce commit 41f01a6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Lib/test/test_ctypes/test_prototypes.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ def test_paramflags_outarg(self):
9393
proto = CFUNCTYPE(c_int, c_char_p, c_int)
9494
with self.assertRaisesRegex(TypeError, "must be a pointer type"):
9595
func = proto(("myprintf", testdll), ((1, "fmt"), (2, "out")))
96-
96+
9797
proto = CFUNCTYPE(c_int, c_char_p, c_void_p)
9898
func = proto(("myprintf", testdll), ((1, "fmt"), (2, "out")))
9999
with self.assertRaisesRegex(TypeError, "must be a pointer type"):

0 commit comments

Comments
 (0)