Skip to content

Commit 07298c8

Browse files
committed
Stop escaping quotes in docstring generation
1 parent 33d582d commit 07298c8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

protocol_code_generator/util/docstring_utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ def generate_docstring(protocol_comment, notes=[]):
77
lines = []
88

99
if protocol_comment:
10-
lines.extend(map(str.strip, escape(protocol_comment).split('\n')))
10+
lines.extend(map(str.strip, escape(protocol_comment, quote=False).split('\n')))
1111

1212
if notes:
1313
if lines:

0 commit comments

Comments
 (0)