Close the file object associated with this manager, if needed.
(self, needs_lock: bool = True)
| 51 | raise NotImplementedError() |
| 52 | |
| 53 | def close(self, needs_lock: bool = True) -> None: |
| 54 | """Close the file object associated with this manager, if needed.""" |
| 55 | raise NotImplementedError() |
| 56 | |
| 57 | |
| 58 | class CachingFileManager(FileManager[T_File]): |
no outgoing calls
no test coverage detected