@@ -364,7 +364,7 @@ def test_bulk_insert(self):
364364
365365 data = [(0 , "bob" , 21 , 123 ), (1 , "jim" , 56 , 45 ), (2 , "fred" , 100 , 180 )]
366366 cursor .executemany (
367- "insert into bulkinsert (id, name, age, height) " " values (%s,%s,%s,%s)" ,
367+ "insert into bulkinsert (id, name, age, height) values (%s,%s,%s,%s)" ,
368368 data ,
369369 )
370370 self .assertEqual (
@@ -414,14 +414,14 @@ def test_bulk_insert_single_record(self):
414414 cursor = conn .cursor ()
415415 data = [(0 , "bob" , 21 , 123 )]
416416 cursor .executemany (
417- "insert into bulkinsert (id, name, age, height) " " values (%s,%s,%s,%s)" ,
417+ "insert into bulkinsert (id, name, age, height) values (%s,%s,%s,%s)" ,
418418 data ,
419419 )
420420 cursor .execute ("commit" )
421421 self ._verify_records (data )
422422
423423 def test_issue_288 (self ):
424- """executemany should work with "insert ... on update" " ""
424+ """executemany should work with "insert ... on update"""
425425 conn = self .connect ()
426426 cursor = conn .cursor ()
427427 data = [(0 , "bob" , 21 , 123 ), (1 , "jim" , 56 , 45 ), (2 , "fred" , 100 , 180 )]
0 commit comments