Exemplo n.º 1
0
 async def rm(self, container: FileContainer, paths: List[str]) -> None:
     await self.stub.rm(
         RmRequest(
             bundle_id=file_container_to_bundle_id_deprecated(container),
             paths=paths,
             container=file_container_to_grpc(container),
         ))
Exemplo n.º 2
0
 async def rm(self, bundle_id: str, paths: List[str]) -> None:
     async with self.get_stub() as stub:
         await stub.rm(RmRequest(bundle_id=bundle_id, paths=paths))
Exemplo n.º 3
0
async def client(client: CompanionClient, bundle_id: str, paths: List[str]) -> None:
    await client.stub.rm(RmRequest(bundle_id=bundle_id, paths=paths))
Exemplo n.º 4
0
Arquivo: client.py Projeto: iqqmuT/idb
 async def rm(self, container: FileContainer, paths: List[str]) -> None:
     await self.stub.rm(
         RmRequest(paths=paths,
                   container=file_container_to_grpc(container)))
Exemplo n.º 5
0
 async def rm(self, bundle_id: str, paths: List[str]) -> None:
     await self.stub.rm(RmRequest(bundle_id=bundle_id, paths=paths))