Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
edublancas committed Nov 6, 2024
1 parent ad48fae commit e8e7983
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tests/integration/test_duckDB.py
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ def test_commits_all_statements(ip, sql, request):


def test_can_query_existing_df(ip_with_duckdb_sqlalchemy_empty):
df = pd.DataFrame({"city": ["NYC"]})
df = pd.DataFrame({"city": ["NYC"]}) # noqa
ip_with_duckdb_sqlalchemy_empty.run_cell("%sql SET python_scan_all_frames=true")
out = ip_with_duckdb_sqlalchemy_empty.run_cell("%sql SELECT * FROM df;")
assert out.result.dict() == {"city": ("NYC",)}

0 comments on commit e8e7983

Please sign in to comment.