| if self._fixed_separator: | if self._fixed_separator: | ||||
| chunks = text.split(self._fixed_separator) | chunks = text.split(self._fixed_separator) | ||||
| else: | else: | ||||
| chunks = list(text) | |||||
| chunks = [text] | |||||
| final_chunks = [] | final_chunks = [] | ||||
| for chunk in chunks: | for chunk in chunks: |