chenjoya commited on
Commit
017bb14
·
verified ·
1 Parent(s): 89798ac

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +1 -2
README.md CHANGED
@@ -64,8 +64,7 @@ This dataset is used for [LiveCC-7B-Base](https://huggingface.co/chenjoya/LiveCC
64
  with open(path, "rb") as f:
65
  f.seek(-2, 2) # avoid last
66
 
67
- while f.read(1) != b"
68
- ":
69
  f.seek(-2, 1)
70
  return f.readline()
71
 
 
64
  with open(path, "rb") as f:
65
  f.seek(-2, 2) # avoid last
66
 
67
+ while f.read(1) != b"\n":
 
68
  f.seek(-2, 1)
69
  return f.readline()
70