(self)
| 108 | |
| 109 | class SystemFileStorage(FileStorageInterface): |
| 110 | def __init__(self): |
| 111 | self.chunk_size = 256 * 1024 |
| 112 | self.root_path = data_root |
| 113 | |
| 114 | def _save(self, file, save_path): |
| 115 | with open(save_path, "wb") as f: |
nothing calls this directly
no outgoing calls
no test coverage detected