コード例 #1
0
ファイル: se_epub.py プロジェクト: ConcaveTrillion/tools
    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)
コード例 #2
0
    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)