def lint(self, skip_lint_ignore: bool) -> list: """ The lint() function is very big so for readability and maintainability it's broken out to a separate file. Strictly speaking that file can be inlined into this class. """ from se.se_epub_lint import lint # pylint: disable=import-outside-toplevel return lint(self, skip_lint_ignore)
def lint(self) -> list: """ The lint() function is very big so for readability and maintainability it's broken out to a separate file. Strictly speaking that file can be inlined into this class. """ from se.se_epub_lint import lint return lint(self, self.metadata_xhtml)