(self, node)
| 418 | self._function_helper(node, "def") |
| 419 | |
| 420 | def visit_AsyncFunctionDef(self, node): |
| 421 | self._function_helper(node, "async def") |
| 422 | |
| 423 | def _function_helper(self, node, fill_suffix): |
| 424 | self.maybe_newline() |
nothing calls this directly
no test coverage detected