Skip to content

Commit ad06fab

Browse files
authored
Add missing commas (#1013)
1 parent 2c240e3 commit ad06fab

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

awswrangler/redshift.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1265,7 +1265,7 @@ def copy_from_files( # pylint: disable=too-many-locals,too-many-arguments
12651265
... path="s3://bucket/my_parquet_files/",
12661266
... con=con,
12671267
... table="my_table",
1268-
... schema="public"
1268+
... schema="public",
12691269
... iam_role="arn:aws:iam::XXX:role/XXX"
12701270
... )
12711271
>>> con.close()
@@ -1469,7 +1469,7 @@ def copy( # pylint: disable=too-many-arguments
14691469
... path="s3://bucket/my_parquet_files/",
14701470
... con=con,
14711471
... table="my_table",
1472-
... schema="public"
1472+
... schema="public",
14731473
... iam_role="arn:aws:iam::XXX:role/XXX"
14741474
... )
14751475
>>> con.close()

0 commit comments

Comments
 (0)