Skip to content

Commit 90a4725

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 973fc3d commit 90a4725

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

tests/unit/meta/test_LockFile.py

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -73,12 +73,14 @@ def test_lockFileInDifferentProcesses(self):
7373
lockedPath = Path(temp_dir)
7474
lockedPath_str = str(lockedPath)
7575
lockFilePaths = []
76-
with (Config_override("lockfile.ttl", 0),
77-
Config_override("lockfile.checkFrequency", 0.1),
78-
Config_override("lockfile.timeout", 1)):
76+
with (
77+
Config_override("lockfile.ttl", 0),
78+
Config_override("lockfile.checkFrequency", 0.1),
79+
Config_override("lockfile.timeout", 1),
80+
):
7981
with multiprocessing.Pool(processes=1) as pool:
8082
lockFilePaths.extend(pool.map(create_lock_file, [lockedPath_str]))
81-
83+
8284
with multiprocessing.Pool(processes=1) as pool:
8385
lockFilePaths.extend(pool.map(create_lock_file, [lockedPath_str]))
8486

0 commit comments

Comments
 (0)