Skip to content

Commit

Permalink
fix: Regex library name
Browse files Browse the repository at this point in the history
  • Loading branch information
lenianiva committed Jan 25, 2025
1 parent 7b31cca commit f9e81e7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pantograph/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
import functools as F

import pexpect
import regex as re
import re


def to_sync(func):
Expand All @@ -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,
Expand Down

0 comments on commit f9e81e7

Please sign in to comment.