Skip to content

Commit bee1b82

Browse files
committed
PEP8
1 parent 84565d9 commit bee1b82

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

pandas/tests/io/parser/test_network.py

+5-3
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ def test_parse_public_s3_bucket_chunked(self, test_s3_resource):
152152
assert isinstance(df, DataFrame)
153153
assert not df.empty
154154
true_df = local_tips.iloc[
155-
chunksize * i_chunk: chunksize * (i_chunk + 1)]
155+
chunksize * i_chunk: chunksize * (i_chunk + 1)]
156156
tm.assert_frame_equal(true_df, df)
157157

158158
def test_parse_public_s3_bucket_chunked_python(self, test_s3_resource):
@@ -170,7 +170,7 @@ def test_parse_public_s3_bucket_chunked_python(self, test_s3_resource):
170170
assert isinstance(df, DataFrame)
171171
assert not df.empty
172172
true_df = local_tips.iloc[
173-
chunksize * i_chunk: chunksize * (i_chunk + 1)]
173+
chunksize * i_chunk: chunksize * (i_chunk + 1)]
174174
tm.assert_frame_equal(true_df, df)
175175

176176
def test_parse_public_s3_bucket_python(self, test_s3_resource):
@@ -209,7 +209,9 @@ def test_s3_fails(self, test_s3_resource):
209209
with pytest.raises(IOError):
210210
read_csv('s3://cant_get_it/')
211211

212-
def test_read_csv_handles_boto_s3_object(self, test_s3_resource, tips_file):
212+
def test_read_csv_handles_boto_s3_object(self,
213+
test_s3_resource,
214+
tips_file):
213215
# see gh-16135
214216

215217
s3_object = test_s3_resource.meta.client.get_object(

0 commit comments

Comments
 (0)