Skip to content

Commit

Permalink
TLDR-544 -- fix distinguished spaces style
Browse files Browse the repository at this point in the history
  • Loading branch information
raxtemur committed Dec 8, 2023
1 parent 52a753b commit 4063aa9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions dedoc/readers/docx_reader/data_structures/paragraph.py
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ def __make_run_list(self) -> None:
if not new_run.text:
continue

if self.runs and self.runs[-1] == new_run:
if len(self.runs) > 0 and new_run.text == " ":

This comment has been minimized.

Copy link
@raxtemur

raxtemur Dec 11, 2023

Author Collaborator

Сделал в итоге методом 1, комментарий к проделанному (и удалённой проверке что здесь была):

        # Какая-то глупость. Если дважды один и то же участок -- пусть будет 2 рана, не страшно,
        # задача склеивать их в line_with_meta_converter.merge_annotations
        # если нет, то этот участок вообще ничего не делает
        # а себе я позволил "мержить" здесь,
        # потому что обрабатывать один этот бедный пробел во время мержа будет будет стремнее
self.runs[-1].text += new_run.text
else:
self.runs.append(new_run)
continue
self.runs.append(new_run)

0 comments on commit 4063aa9

Please sign in to comment.