Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions src/sprites/exec.py
Original file line number Diff line number Diff line change
Expand Up @@ -179,9 +179,7 @@ async def _run_async(self) -> int:
async with asyncio.timeout(self.timeout):
return await run_ws_command(self)
except asyncio.TimeoutError:
raise TimeoutError(
f"command timed out after {self.timeout}s", timeout=self.timeout
) from None
raise TimeoutError(f"command timed out after {self.timeout}s") from None
else:
return await run_ws_command(self)

Expand Down