()
| 530 | return ast.Call(ast.Name('map', ast.Load()), args=[mapFunc, iterable], keywords=[]) |
| 531 | |
| 532 | def endFrame(): |
| 533 | key = ast.Name(id=SPLOOT_KEY, ctx=ast.Load()) |
| 534 | func = ast.Attribute(value=key, attr="endFrame", ctx=ast.Load()) |
| 535 | call_end_frame = ast.Call(func, args=[], keywords=[]) |
| 536 | return ast.Expr(call_end_frame, lineno=1, col_offset=0) |
| 537 | |
| 538 | def endLoop(): |
| 539 | key = ast.Name(id=SPLOOT_KEY, ctx=ast.Load()) |
no outgoing calls
no test coverage detected