From f9e81e7ffae5d61fbc26a32b9c53a1595fd548bf Mon Sep 17 00:00:00 2001 From: Leni Aniva Date: Fri, 24 Jan 2025 22:13:25 -0800 Subject: [PATCH] fix: Regex library name --- pantograph/utils.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pantograph/utils.py b/pantograph/utils.py index 31067a8..1b4f01e 100644 --- a/pantograph/utils.py +++ b/pantograph/utils.py @@ -7,7 +7,7 @@ import functools as F import pexpect -import regex as re +import re def to_sync(func): @@ -18,7 +18,7 @@ def wrapper(*args, **kwargs): async def check_output(*args, **kwargs): p = await asyncio.create_subprocess_exec( - *args, + *args, stdout=asyncio.subprocess.PIPE, stderr=asyncio.subprocess.PIPE, **kwargs,