Skip to content

Commit eb9993d

Browse files
committed
fix return value for hash_comment=skip
1 parent eb3d9a1 commit eb9993d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ginza/analyzer.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ def analyze(
8484
if hash_comment == "print":
8585
return ((line,),)
8686
elif hash_comment == "skip":
87-
return (((),),)
87+
return ((),)
8888
if line == "":
8989
return (("",),)
9090
if output_format in ["0", "conllu"]:

0 commit comments

Comments
 (0)