Skip to content

Commit

Permalink
Remove escaped space. I'm not sure what this was for but it doesn't s…
Browse files Browse the repository at this point in the history
…eem to be needed
  • Loading branch information
dave1010 committed Dec 3, 2023
1 parent cdab006 commit 89b28ff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion clipea/clipea_llm.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,5 +87,5 @@ def process_command():
if output_file:
utils.write_to_file(
output_file,
';\ '.join(buffer.rstrip(os.linesep).split(os.linesep)) + os.linesep,
';'.join(buffer.rstrip(os.linesep).split(os.linesep)) + os.linesep,
)

0 comments on commit 89b28ff

Please sign in to comment.