We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 33d582d commit 07298c8Copy full SHA for 07298c8
protocol_code_generator/util/docstring_utils.py
@@ -7,7 +7,7 @@ def generate_docstring(protocol_comment, notes=[]):
7
lines = []
8
9
if protocol_comment:
10
- lines.extend(map(str.strip, escape(protocol_comment).split('\n')))
+ lines.extend(map(str.strip, escape(protocol_comment, quote=False).split('\n')))
11
12
if notes:
13
if lines:
0 commit comments