summaryrefslogtreecommitdiff
path: root/test/sql/test_insert_exec.py
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2020-09-28 14:08:59 -0400
committerMike Bayer <mike_mp@zzzcomputing.com>2020-09-28 15:17:26 -0400
commitc3f102c9fe9811fd5286628cc6aafa5fbc324621 (patch)
tree4a78723089ded623701667de1eee21d22edbe6c1 /test/sql/test_insert_exec.py
parent75ac0abc7d5653d10006769a881374a46b706db5 (diff)
downloadsqlalchemy-c3f102c9fe9811fd5286628cc6aafa5fbc324621.tar.gz
upgrade to black 20.8b1
It's better, the majority of these changes look more readable to me. also found some docstrings that had formatting / quoting issues. Change-Id: I582a45fde3a5648b2f36bab96bad56881321899b
Diffstat (limited to 'test/sql/test_insert_exec.py')
-rw-r--r--test/sql/test_insert_exec.py18
1 files changed, 15 insertions, 3 deletions
diff --git a/test/sql/test_insert_exec.py b/test/sql/test_insert_exec.py
index 45a8bccf5..198ff48c0 100644
--- a/test/sql/test_insert_exec.py
+++ b/test/sql/test_insert_exec.py
@@ -231,7 +231,10 @@ class InsertExecTest(fixtures.TablesTest):
"t4",
metadata,
Column(
- "id", Integer, Sequence("t4_id_seq"), primary_key=True,
+ "id",
+ Integer,
+ Sequence("t4_id_seq"),
+ primary_key=True,
),
Column("foo", String(30)),
),
@@ -387,7 +390,12 @@ class TableInsertTest(fixtures.TablesTest):
Table(
"foo",
metadata,
- Column("id", Integer, Sequence("t_id_seq"), primary_key=True,),
+ Column(
+ "id",
+ Integer,
+ Sequence("t_id_seq"),
+ primary_key=True,
+ ),
Column("data", String(50)),
Column("x", Integer),
)
@@ -397,7 +405,11 @@ class TableInsertTest(fixtures.TablesTest):
metadata,
# note this will have full AUTO INCREMENT on MariaDB
# whereas "foo" will not due to sequence support
- Column("id", Integer, primary_key=True,),
+ Column(
+ "id",
+ Integer,
+ primary_key=True,
+ ),
Column("data", String(50)),
Column("x", Integer),
)