(a: int, b: int)
| 295 | |
| 296 | @pw.udf(executor=get_async_executor(fully_async), propagate_none=True) |
| 297 | def add(a: int, b: int) -> int: |
| 298 | assert a is not None |
| 299 | assert b is not None |
| 300 | internal_add() |
| 301 | return a + b |
| 302 | |
| 303 | input = T( |
| 304 | """ |
no outgoing calls
no test coverage detected