Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
maltekuehl committed Sep 30, 2024
1 parent d242c0b commit 92cb5ce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pytximport/importers/_read_tsv.py
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ def read_tsv(
engine: Literal["pyarrow", "c"] = "pyarrow" if importlib.util.find_spec("pyarrow") is not None else "c"

if engine != "pyarrow":
warning("The pyarrow is not available, consider installing pyarrow to improve import performance.")
warning("pyarrow is not available, consider installing it to improve import performance.")

transcript_dataframe = pd.read_table(
file_path,
Expand Down

0 comments on commit 92cb5ce

Please sign in to comment.