remove. Parameters ---------- fname : if file name is provided. specific file is removed otherwise, The all the objects will be removed.
(self, fname=None)
| 76 | raise NotImplementedError(f"Please implement the `list` method") |
| 77 | |
| 78 | def remove(self, fname=None): |
| 79 | """remove. |
| 80 | |
| 81 | Parameters |
| 82 | ---------- |
| 83 | fname : |
| 84 | if file name is provided. specific file is removed |
| 85 | otherwise, The all the objects will be removed. |
| 86 | """ |
| 87 | raise NotImplementedError(f"Please implement the `remove` method") |
| 88 | |
| 89 | |
| 90 | class FileManager(ObjManager): |
no outgoing calls