Commit 846b1fd6 authored by thomwolf's avatar thomwolf
Browse files

Fix #419

parent 404adcda
......@@ -85,9 +85,9 @@ class SquadExample(object):
s += ", doc_tokens: [%s]" % (" ".join(self.doc_tokens))
if self.start_position:
s += ", start_position: %d" % (self.start_position)
if self.start_position:
if self.end_position:
s += ", end_position: %d" % (self.end_position)
if self.start_position:
if self.is_impossible:
s += ", is_impossible: %r" % (self.is_impossible)
return s
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment