Skip to content

Commit

Permalink
chore: fix mypy failure (#1500)
Browse files Browse the repository at this point in the history
# Description
The description of the main changes of your pull request

# Related Issue(s)
<!---
For example:

- closes #106
--->

# Documentation

<!---
Share links to useful documentation
--->
  • Loading branch information
wjones127 authored Jun 28, 2023
1 parent e5dd8e2 commit 858bb66
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/deltalake/writer.py
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ def visitor(written_file: Any) -> None:
if PYARROW_MAJOR_VERSION >= 9:
size = written_file.size
else:
size = filesystem.get_file_info([path])[0].size # type: ignore
size = filesystem.get_file_info([path])[0].size

add_actions.append(
AddAction(
Expand Down

0 comments on commit 858bb66

Please sign in to comment.