Call the module's entry function (`main`).
(self, *args: Any)
| 294 | return self.get_function(name) |
| 295 | |
| 296 | def __call__(self, *args: Any) -> Any: |
| 297 | """Call the module's entry function (`main`).""" |
| 298 | # pylint: disable=not-callable |
| 299 | return self.main(*args) |
| 300 | |
| 301 | def inspect_source(self, fmt: str = "") -> str: |
| 302 | """Get source code from module, if available. |
nothing calls this directly
no outgoing calls
no test coverage detected