Skip to content

Commit d006740

Browse files
author
Rafa de la Torre
committed
Remove uneeded trailing commas
1 parent c01ecee commit d006740

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/test_sql_copy.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
]
3737

3838
COPY_FROM_QUERY = (
39-
'COPY carto_python_sdk_copy_test (the_geom, name, age) FROM stdin WITH ',
39+
'COPY carto_python_sdk_copy_test (the_geom, name, age) FROM stdin WITH '
4040
'(FORMAT csv, HEADER true)'
4141
)
4242

@@ -122,8 +122,8 @@ def test_copyfrom_file_path(copy_client):
122122
@pytest.fixture()
123123
def copyto_sample_query():
124124
arbitrary_subquery = (
125-
'SELECT i cartodb_id, ',
126-
'ST_AsEWKT(ST_SetSRID(ST_MakePoint(i, i),4326)) the_geom FROM ',
125+
'SELECT i cartodb_id, '
126+
'ST_AsEWKT(ST_SetSRID(ST_MakePoint(i, i),4326)) the_geom FROM '
127127
'generate_series(1,10) i'
128128
)
129129
query = 'COPY ({subquery}) TO STDOUT'.format(subquery=arbitrary_subquery)

0 commit comments

Comments
 (0)