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 177b208 commit 6443284Copy full SHA for 6443284
src/python/pipelines_utils/StreamJsonListLoader.py
@@ -39,7 +39,7 @@ def __init__(self, filename_or_stream):
39
40
stream_character = self.stream.read(1)
41
if not stream_character == '[':
42
- raise NotImplementedError('Found "%s". Only JSON-streams of lists (that start with a "[") are supported.' % stream_character)
+ raise NotImplementedError('Only JSON-streams of lists (that start with a "[") are supported. Found "%s".' % stream_character)
43
44
def __iter__(self):
45
return self
0 commit comments