Skip to content

Commit

Permalink
fix html_doc_items tuple of command ReadScriptOutput
Browse files Browse the repository at this point in the history
  • Loading branch information
leo-schick committed Sep 21, 2023
1 parent d73b185 commit 4837cdf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mara_pipelines/commands/files.py
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ def html_doc_items(self) -> List[Tuple[str, str]]:
('make unique', _.tt[self.make_unique]),
('target_table', _.tt[self.target_table]),
('db alias', _.tt[self.db_alias()]),
('pipe format', _.tt[self.pipe_format])
('pipe format', _.tt[self.pipe_format]),
('delimiter char',
_.tt[json.dumps(self.delimiter_char) if self.delimiter_char is not None else None]),
('quote char', _.tt[json.dumps(self.quote_char) if self.quote_char is not None else None]),
Expand Down

0 comments on commit 4837cdf

Please sign in to comment.