Skip to content

Commit

Permalink
removal(misc): removed method param;
Browse files Browse the repository at this point in the history
- Removed method param comments.
  • Loading branch information
JVickery-TBS committed Oct 16, 2023
1 parent 38ef3d0 commit 514c6b5
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions ckanext/datastore/writer.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@
def csv_writer(fields: list[dict[str, Any]], bom: bool = False):
'''Context manager for writing UTF-8 CSV data to file
:param response: file-like object for writing data
:param fields: list of datastore fields
:param bom: True to include a UTF-8 BOM at the start of the file
'''
Expand All @@ -39,7 +38,6 @@ def csv_writer(fields: list[dict[str, Any]], bom: bool = False):
def tsv_writer(fields: list[dict[str, Any]], bom: bool = False):
'''Context manager for writing UTF-8 TSV data to file
:param response: file-like object for writing data
:param fields: list of datastore fields
:param bom: True to include a UTF-8 BOM at the start of the file
'''
Expand Down Expand Up @@ -76,7 +74,6 @@ def end_file(self) -> bytes:
def json_writer(fields: list[dict[str, Any]], bom: bool = False):
'''Context manager for writing UTF-8 JSON data to file
:param response: file-like object for writing data
:param fields: list of datastore fields
:param bom: True to include a UTF-8 BOM at the start of the file
'''
Expand Down Expand Up @@ -121,7 +118,6 @@ def end_file(self) -> bytes:
def xml_writer(fields: list[dict[str, Any]], bom: bool = False):
'''Context manager for writing UTF-8 XML data to file
:param response: file-like object for writing data
:param fields: list of datastore fields
:param bom: True to include a UTF-8 BOM at the start of the file
'''
Expand Down

0 comments on commit 514c6b5

Please sign in to comment.