Skip to content

Commit

Permalink
Revert "fix: concatenate all records into a single newline-separated …
Browse files Browse the repository at this point in the history
…string for plaintext"

This reverts commit 1ad99dc.
  • Loading branch information
alexmaras committed Feb 16, 2024
1 parent 1ad99dc commit 6d589cb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion target_s3/formats/format_plaintext.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ def _prepare_records(self):
return super()._prepare_records()

def _write(self) -> None:
return super()._write("\n".join(self.records))
return super()._write(self.records)

def run(self) -> None:
# use default behavior, no additional run steps needed
Expand Down

0 comments on commit 6d589cb

Please sign in to comment.