Skip to content

Commit 07c9af5

Browse files
committed
Fix lint
Signed-off-by: Nguyen Viet Dung <[email protected]>
1 parent 0332605 commit 07c9af5

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

Lib/test/test_ctypes/test_prototypes.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -71,12 +71,12 @@ def test_paramflags(self):
7171

7272
self.assertEqual(func(None), None)
7373
self.assertEqual(func(input=None), None)
74-
74+
7575
def test_invalid_paramflags(self):
7676
proto = CFUNCTYPE(c_int, c_char_p)
7777
with self.assertRaises(ValueError):
7878
func = proto(("myprintf", testdll), ((1, "fmt"), (1, "arg1")))
79-
79+
8080
def test_invalid_setattr_argtypes(self):
8181
proto = CFUNCTYPE(c_int, c_char_p)
8282
func = proto(("myprintf", testdll), ((1, "fmt"),))
@@ -89,7 +89,6 @@ def test_invalid_setattr_argtypes(self):
8989
setattr, func, "argtypes", (c_char_p, c_int))
9090
self.assertEqual(func.argtypes, (c_char_p,))
9191

92-
9392
def test_int_pointer_arg(self):
9493
func = testdll._testfunc_p_p
9594
if sizeof(c_longlong) == sizeof(c_void_p):

0 commit comments

Comments
 (0)