Skip to content

Commit

Permalink
Addressed linters
Browse files Browse the repository at this point in the history
  • Loading branch information
DevChrisCross committed Jan 4, 2025
1 parent 51feb76 commit a518e32
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
1 change: 0 additions & 1 deletion python/deltalake/query.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,6 @@ def execute(self, sql: str) -> QueryResult:
"""
return QueryResult(self._query_builder, sql)


def sql(self, sql: str) -> QueryResult:
"""
Convenience method for `execute()` method.
Expand Down
3 changes: 2 additions & 1 deletion python/tests/test_table_read.py
Original file line number Diff line number Diff line change
Expand Up @@ -1001,7 +1001,8 @@ def test_read_query_builder_join_multiple_tables(tmp_path):
INNER JOIN tbl2 ON tbl1.date = tbl2.date
ORDER BY tbl1.date
"""
).fetchall()
)
.fetchall()
).to_pydict()
assert expected == actual

Expand Down

0 comments on commit a518e32

Please sign in to comment.