From 4837cdfce6aa915139af9144594632325892f781 Mon Sep 17 00:00:00 2001 From: Leo Schick Date: Thu, 21 Sep 2023 07:49:57 +0200 Subject: [PATCH] fix html_doc_items tuple of command ReadScriptOutput --- mara_pipelines/commands/files.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mara_pipelines/commands/files.py b/mara_pipelines/commands/files.py index b10ff19..f533ae9 100644 --- a/mara_pipelines/commands/files.py +++ b/mara_pipelines/commands/files.py @@ -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]),