Skip to content

Commit 797781d

Browse files
Update graphgen/models/splitter/recursive_character_splitter.py
Co-authored-by: Copilot <[email protected]>
1 parent 86e9082 commit 797781d

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

graphgen/models/splitter/recursive_character_splitter.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,6 @@ def _split_text_with_regex_from_end(
9696
splits = ["".join(i) for i in zip(_splits[0::2], _splits[1::2])]
9797
if len(_splits) % 2 == 1:
9898
splits += _splits[-1:]
99-
# splits = [_splits[0]] + splits
10099
else:
101100
splits = re.split(separator, text)
102101
else:

0 commit comments

Comments
 (0)