(self, async_value: str = "async ", sync_value: str = "")
| 603 | self.writeline(f"{' = '.join(undefs)} = missing") |
| 604 | |
| 605 | def choose_async(self, async_value: str = "async ", sync_value: str = "") -> str: |
| 606 | return async_value if self.environment.is_async else sync_value |
| 607 | |
| 608 | def func(self, name: str) -> str: |
| 609 | return f"{self.choose_async()}def {name}" |
no outgoing calls
no test coverage detected