Skip to content

Commit

Permalink
Code style
Browse files Browse the repository at this point in the history
Signed-off-by: Levko Kravets <levko.ne@gmail.com>
  • Loading branch information
kravets-levko committed Jul 26, 2024
1 parent 3a5b34a commit 8edf41a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/databricks/sql/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -1164,7 +1164,7 @@ def _convert_arrow_table(self, table):
timestamp_as_object=True,
)

res = df.to_numpy(na_value=None, dtype='object')
res = df.to_numpy(na_value=None, dtype="object")
return [ResultRow(*v) for v in res]

@property
Expand Down

0 comments on commit 8edf41a

Please sign in to comment.