(self, key: str)
| 13 | self.objects = dict(objects or {}) |
| 14 | |
| 15 | async def exists(self, key: str) -> bool: |
| 16 | return key in self.objects |
| 17 | |
| 18 | async def is_file(self, key: str) -> bool: |
| 19 | return key in self.objects |
no outgoing calls
no test coverage detected