Skip to content

Commit

Permalink
Fix mypy error (#62)
Browse files Browse the repository at this point in the history
  • Loading branch information
jrbourbeau authored Aug 17, 2023
1 parent 865e6d0 commit 24e0c58
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_write.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ def test_datetime(tmpdir, unit):
"""Ensure we can write datetime with different resolutions,
at least one-way only"""
tmpdir = str(tmpdir)
ts = pd.date_range("2023-01-01", periods=10, freq="1D", unit=unit) # type: ignore[call-arg]
ts = pd.date_range("2023-01-01", periods=10, freq="1D", unit=unit)
df = pd.DataFrame({"ts": pd.Series(ts)})
ddf = dd.from_pandas(df, npartitions=2)
to_deltalake(tmpdir, ddf)
Expand Down

0 comments on commit 24e0c58

Please sign in to comment.