[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
This commit is contained in:
parent
9b69bba347
commit
1f19489e12
|
@ -7,7 +7,13 @@ and `capture_output=True`. When passing `-vvv` the full content of
|
||||||
|
|
||||||
```python
|
```python
|
||||||
def test_vvv():
|
def test_vvv():
|
||||||
subprocess.run(["sh","-c","seq 400|xargs echo; false"], capture_output=True, text=True, encoding="utf8", check=True)
|
subprocess.run(
|
||||||
|
["sh", "-c", "seq 400|xargs echo; false"],
|
||||||
|
capture_output=True,
|
||||||
|
text=True,
|
||||||
|
encoding="utf8",
|
||||||
|
check=True,
|
||||||
|
)
|
||||||
```
|
```
|
||||||
|
|
||||||
will now output:
|
will now output:
|
||||||
|
|
Loading…
Reference in New Issue