Skip to content
This repository was archived by the owner on Jul 4, 2023. It is now read-only.

Commit 6f71f1d

Browse files
committed
Remove random print
1 parent 9129809 commit 6f71f1d

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

torchnlp/datasets/dataset.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,8 +82,6 @@ def __setitem__(self, key, item):
8282
if not isinstance(row, dict):
8383
raise ValueError('Row must be a dict.')
8484
self.columns.update(row.keys())
85-
print(key)
86-
print(self.rows)
8785
self.rows[key] = row
8886
else:
8987
raise TypeError('Invalid argument type.')

0 commit comments

Comments
 (0)