This is an automated email from the ASF dual-hosted git repository.
tison pushed a commit to branch unstable
in repository https://gitbox.apache.org/repos/asf/incubator-kvrocks.git
The following commit(s) were added to refs/heads/unstable by this push:
new 32241c9 Remove generic parameter for Popen in x.py (#773)
32241c9 is described below
commit 32241c9d02d624d01ba2b14ae6d5c4965841eeb7
Author: Twice <[email protected]>
AuthorDate: Sat Aug 6 23:04:42 2022 +0800
Remove generic parameter for Popen in x.py (#773)
---
x.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/x.py b/x.py
index 46c012e..2a3eb7d 100755
--- a/x.py
+++ b/x.py
@@ -51,7 +51,7 @@ SEMVER_REGEX = re.compile(
re.VERBOSE,
)
-def run(*args: str, msg: Optional[str]=None, verbose: bool=False, **kwargs:
Any) -> Popen[Any]:
+def run(*args: str, msg: Optional[str]=None, verbose: bool=False, **kwargs:
Any) -> Popen:
sys.stdout.flush()
if verbose:
print(f"$ {' '.join(args)}")