Skip to content
This repository has been archived by the owner on Aug 5, 2023. It is now read-only.

Commit

Permalink
Flake8
Browse files Browse the repository at this point in the history
  • Loading branch information
gusutabopb committed May 9, 2019
1 parent d95304e commit 81897fd
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/test_dataframe.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ def test_write_dataframe_with_nan(df_client):
i = np.random.randint(df.shape[0])
j = np.random.randint(df.shape[1])
df.iloc[i, j] = np.nan
df_client.write(df, f'fills{i+1:02d}')
df_client.write(df, f'fills{i + 1:02d}')


@utils.requires_pandas
Expand All @@ -44,6 +44,7 @@ def test_read_dataframe(df_client):
logger.info(f'\n{df.head()}')
assert df.shape == (50, 8)


@utils.requires_pandas
@pytest.mark.asyncio
async def test_dataframe_chunked_query(client):
Expand Down

0 comments on commit 81897fd

Please sign in to comment.