From 90f731ca929725ef3fcad3da7bcb3e3672d9eefd Mon Sep 17 00:00:00 2001 From: Alexander Goscinski Date: Fri, 13 Dec 2024 10:22:09 +0100 Subject: [PATCH] fragments of rebasing --- src/widget_code_input/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/widget_code_input/utils.py b/src/widget_code_input/utils.py index 6670075..6af837c 100644 --- a/src/widget_code_input/utils.py +++ b/src/widget_code_input/utils.py @@ -50,7 +50,7 @@ def build_pre_body(signature, docstring, indent_level=4): return "{}\n{}".format( signature, - prepend_indent('' if docstring is None else '"""{}"""'.format(docstring), + prepend_indent('' if docstring is None else docstring, indent_level=indent_level), )