Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
async def _logs_list(self, cm):
inspect_info = await self.show()
is_tty = inspect_info["Config"]["Tty"]
async with cm as response:
return await multiplexed_result_list(response, is_tty=is_tty)
async def _logs_list(self, cm, is_tty):
async with cm as response:
return await multiplexed_result_list(response, is_tty=is_tty)