Skip to content

Commit

Permalink
Remove redundant type annotations in docstrings
Browse files Browse the repository at this point in the history
  • Loading branch information
cthoyt committed Nov 15, 2024
1 parent e3e67b8 commit 1336c0e
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions src/pystow/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -559,7 +559,6 @@ def write_lzma_csv(
"""Write a dataframe as an lzma-compressed file.
:param df: A dataframe
:type df: pandas.DataFrame
:param path: The path to the resulting LZMA compressed dataframe file
:param sep: The separator in the dataframe. Overrides Pandas default to use a tab.
:param index: Should the index be output? Overrides the Pandas default to be false.
Expand All @@ -583,7 +582,6 @@ def write_zipfile_csv(
"""Write a dataframe to an inner CSV file to a zip archive.
:param df: A dataframe
:type df: pandas.DataFrame
:param path: The path to the resulting zip archive
:param inner_path: The path inside the zip archive to write the dataframe
:param sep: The separator in the dataframe. Overrides Pandas default to use a tab.
Expand Down Expand Up @@ -718,7 +716,6 @@ def write_tarfile_csv(
"""Write a dataframe to an inner CSV file from a tar archive.
:param df: A dataframe
:type df: pandas.DataFrame
:param path: The path to the resulting tar archive
:param inner_path: The path inside the tar archive to write the dataframe
:param sep: The separator in the dataframe. Overrides Pandas default to use a tab.
Expand Down Expand Up @@ -793,7 +790,6 @@ def write_sql(df: "pandas.DataFrame", name: str, path: Union[str, Path], **kwarg
"""Write a dataframe as a SQL table.
:param df: A dataframe
:type df: pandas.DataFrame
:param name: The table the database to write to
:param path: The path to the resulting tar archive
:param kwargs: Additional keyword arguments to pass to :meth:`pandas.DataFrame.to_sql`
Expand Down Expand Up @@ -903,7 +899,6 @@ def download_from_s3(
:param path: The place to write the file
:param client:
A botocore client. If none given, one will be created automatically
:type client: Optional[botocore.client.BaseClient]
:param client_kwargs:
Keyword arguments to be passed to the client on instantiation.
:param download_file_kwargs:
Expand Down

0 comments on commit 1336c0e

Please sign in to comment.