We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 273ef3f commit df0a8acCopy full SHA for df0a8ac
1 file changed
src/libtmux/common.py
@@ -472,12 +472,10 @@ async def run(cls, *args: t.Any) -> AsyncTmuxCmd:
472
cmd: list[str] = [tmux_bin] + [str(c) for c in args]
473
474
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
- )
+ process: asyncio.subprocess.Process = await asyncio.create_subprocess_exec(
+ *cmd,
+ stdout=asyncio.subprocess.PIPE,
+ stderr=asyncio.subprocess.PIPE,
481
)
482
stdout_bytes, stderr_bytes = await process.communicate()
483
returncode: int = (
0 commit comments