Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Oct 7, 2024
1 parent 04dbdec commit e4ed137
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/test_monitored_process.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ def test_communicate_large_input():
cases = [(rand(), rand()) for _ in range(TESTS)]

INPUT = f'{TESTS}\n' + ''.join(f'{a} {b}\n' for a, b in cases)
EXPECTED = ''.join(f'{a+b}\n' for a, b in cases)
EXPECTED = ''.join(f'{a + b}\n' for a, b in cases)
CODE = """
t = int(input())
for _ in range(t):
Expand Down
2 changes: 1 addition & 1 deletion tests/test_process_jobs.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ def test_multiple_jobs():
for i in range(1, THREADS + 1):
job = ProcessJob(
python_script(
f"from time import sleep; sleep({i*SLEEPFOR})",
f"from time import sleep; sleep({i * SLEEPFOR})",
),
)

Expand Down

0 comments on commit e4ed137

Please sign in to comment.