Bump version 20220506 & fix small issue with types

pull/755/head 20220506
Pieter Marsman 2022-05-06 22:02:32 +02:00
parent 1bf3c42b59
commit e19aea932d
2 changed files with 3 additions and 2 deletions

View File

@ -4,7 +4,7 @@ All notable changes in pdfminer.six will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
## [Unreleased]
## [20220506]
### Fixed

View File

@ -495,7 +495,8 @@ class LTTextLine(LTTextContainer[TextLineElement]):
)
def analyze(self, laparams: LAParams) -> None:
LTTextContainer.analyze(self, laparams)
for obj in self._objs:
obj.analyze(laparams)
LTContainer.add(self, LTAnno("\n"))
return