Skip to content

Commit 9cdd37b

Browse files
committed
chore: remove trailing commas
1 parent 37e584e commit 9cdd37b

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

tests/system/test_sqlalchemy_bigquery.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -69,8 +69,8 @@
6969
datetime.datetime(2013, 10, 10, 11, 27, 16),
7070
datetime.time(11, 27, 16),
7171
b"\xef",
72-
{"name": "John Doe", "age": 100,},
73-
{"record": {"name": "John Doe 2", "age": 200,}},
72+
{"name": "John Doe", "age": 100},
73+
{"record": {"name": "John Doe 2", "age": 200}},
7474
[1, 2, 3],
7575
]
7676

@@ -217,7 +217,7 @@ def query(table):
217217
.label("outer")
218218
)
219219
query = (
220-
select([col1, col2, col3,])
220+
select([col1, col2, col3])
221221
.where(col1 < "2017-01-01 00:00:00")
222222
.group_by(col1)
223223
.order_by(col2)
@@ -386,7 +386,7 @@ def test_nested_labels(engine, table):
386386
sqlalchemy.func.sum(col.label("inner")).label("outer")
387387
).over(),
388388
sqlalchemy.func.sum(
389-
sqlalchemy.case([[sqlalchemy.literal(True), col.label("inner"),]]).label(
389+
sqlalchemy.case([[sqlalchemy.literal(True), col.label("inner")]]).label(
390390
"outer"
391391
)
392392
),

tests/unit/test_parse_url.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,7 @@ def test_disallowed(disallowed_arg):
198198

199199
@pytest.mark.parametrize(
200200
"not_implemented_arg",
201-
["query_parameters", "table_definitions", "time_partitioning", "udf_resources",],
201+
["query_parameters", "table_definitions", "time_partitioning", "udf_resources"],
202202
)
203203
def test_not_implemented(not_implemented_arg):
204204
url = make_url(

0 commit comments

Comments
 (0)