Skip to content

Commit 6a455fd

Browse files
bryanyang0528igorborgest
authored andcommitted
fixed format
1 parent d73ef10 commit 6a455fd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

testing/test_awswrangler/test_moto.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,7 @@ def test_csv(s3):
224224
def test_read_csv_with_chucksize_and_pandas_arguments(s3):
225225
path = "s3://bucket/test.csv"
226226
wr.s3.to_csv(df=get_df_csv(), path=path, index=False)
227-
dfs = [dfs for dfs in wr.s3.read_csv(path=path, chunksize=1, usecols=['id', 'string'])]
227+
dfs = [dfs for dfs in wr.s3.read_csv(path=path, chunksize=1, usecols=["id", "string"])]
228228
assert len(dfs) == 3
229229
for df in dfs:
230230
assert len(df.columns) == 2

0 commit comments

Comments
 (0)