Python stub-files and doxygen

36 views Asked by At

Can you simply generate .html via doxygen using documentation in stub-files?

main.py

    def run_kpi_coverage_on_projects(self):
        for project in [a for a in self.projectList if a not in self.complications]:
            self.jsonValues.run_kpi_coverage(project)

main.pyi

    def run_kpi_coverage_on_projects(self) -> None:
        """
        @summary <br/>
        Method which iterates through all projects and triggers deeper methods. <br/>
        Method calculates all KPIs, communicates with IMS and reads source data.
        """
        ...

Generated .html does not cover the .pyi files. Can you somehow force it? Not that one I want

0

There are 0 answers