Skip to content

Commit df0a8ac

Browse files
committed
style(ruff): apply auto-fixes after rebase onto master
1 parent 273ef3f commit df0a8ac

1 file changed

Lines changed: 4 additions & 6 deletions

File tree

src/libtmux/common.py

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -472,12 +472,10 @@ async def run(cls, *args: t.Any) -> AsyncTmuxCmd:
472472
cmd: list[str] = [tmux_bin] + [str(c) for c in args]
473473

474474
try:
475-
process: asyncio.subprocess.Process = (
476-
await asyncio.create_subprocess_exec(
477-
*cmd,
478-
stdout=asyncio.subprocess.PIPE,
479-
stderr=asyncio.subprocess.PIPE,
480-
)
475+
process: asyncio.subprocess.Process = await asyncio.create_subprocess_exec(
476+
*cmd,
477+
stdout=asyncio.subprocess.PIPE,
478+
stderr=asyncio.subprocess.PIPE,
481479
)
482480
stdout_bytes, stderr_bytes = await process.communicate()
483481
returncode: int = (

0 commit comments

Comments
 (0)