Finalize this store by explicitly syncing and closing
(writes, store)
| 124 | |
| 125 | |
| 126 | def _finalize_store(writes, store): |
| 127 | """Finalize this store by explicitly syncing and closing""" |
| 128 | del writes # ensure writing is done first |
| 129 | store.close() |
| 130 | |
| 131 | |
| 132 | def delayed_close_after_writes(writes, store): |
nothing calls this directly
no test coverage detected
searching dependent graphs…