(a, b, status, *args, **kwargs)
| 17 | |
| 18 | |
| 19 | def sync(a, b, status, *args, **kwargs): |
| 20 | new_status = SqliteStatus(':memory:') |
| 21 | new_status.load_legacy_status(status) |
| 22 | rv = _sync(a, b, new_status, *args, **kwargs) |
| 23 | status.clear() |
| 24 | status.update(new_status.to_legacy_status()) |
| 25 | return rv |
| 26 | |
| 27 | |
| 28 | def empty_storage(x): |
no test coverage detected