Skip to content

Commit

Permalink
Update docstrings for DataFrame only
Browse files Browse the repository at this point in the history
  • Loading branch information
ghukill committed May 7, 2024
1 parent 3a9e289 commit ecc971b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion hrqb/base/target.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ def __init__(self, path: str, table_name: str) -> None:


class PandasPickleTarget(HRQBLocalTarget):
"""Target is Pandas object (DataFrame or Series) pickled to disk."""
"""Target is pandas DataFrame pickled to disk."""

def read(self) -> pd.DataFrame:
return pd.read_pickle(self.path)
Expand Down
2 changes: 1 addition & 1 deletion hrqb/base/task.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ def named_inputs(self) -> dict[str, PandasPickleTarget | QuickbaseTableTarget]:


class PandasPickleTask(HRQBTask):
"""Base Task class for Tasks that write pickled pandas objects."""
"""Base Task class for Tasks that write a pickled pandas DataFrame."""

@property
def filename_extension(self) -> str:
Expand Down

0 comments on commit ecc971b

Please sign in to comment.