Skip to content

Commit 5f1a982

Browse files
committed
Skip/ignore newlines when parsing
1 parent 0a2ded4 commit 5f1a982

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

fido/fido.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ def convert_container_sequence(self, sig):
123123
if sig[i] == "'":
124124
inq = True
125125
continue
126-
if sig[i] == " ":
126+
if sig[i] == " " or sig[i] == "\n":
127127
continue
128128
if sig[i] == "[":
129129
seq += b"("

0 commit comments

Comments
 (0)