Skip to content

Commit 237010e

Browse files
authored
remove print statements
1 parent 74e9c2b commit 237010e

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

pandas/io/json/_json.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -742,7 +742,6 @@ def read(self):
742742
obj = concat(self)
743743
elif self.lines:
744744
data = ensure_str(self.data)
745-
print(data)
746745
if self.nrows:
747746
compiled_pattern = re.compile("\n")
748747
data_iterator = compiled_pattern.finditer(data)
@@ -757,7 +756,6 @@ def read(self):
757756
start = end
758757
nrows_seen += 1
759758
data = data_surrogate
760-
print(data)
761759
else:
762760
data = data.split("\n")
763761
obj = self._get_object_parser(self._combine_lines(data))

0 commit comments

Comments
 (0)