Skip to content

Commit

Permalink
Remove unnecessary comma.
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 568313920
  • Loading branch information
Zarjagen authored and tensorflower-gardener committed Sep 25, 2023
1 parent 00ec129 commit 0a33281
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion official/nlp/data/wmt_dataloader_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ def _generate_record_file(filepath, src_lines, tgt_lines, unique_id=False):
}
if unique_id:
features['unique_id'] = tf.train.Feature(
int64_list=tf.train.Int64List(value=[i])),
int64_list=tf.train.Int64List(value=[i]))
example = tf.train.Example(
features=tf.train.Features(
feature=features))
Expand Down

0 comments on commit 0a33281

Please sign in to comment.