Skip to content

Commit 69a5aa7

Browse files
committed
run pre-commit
1 parent 16943a4 commit 69a5aa7

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

test/test_monitor.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,11 @@ def test_cleanup_executors_on_client_close(self):
8787
def test_no_thread_start_runtime_err_on_shutdown(self):
8888
"""Test we silence noisy runtime errors fired when the MongoClient spawns a new thread
8989
on process shutdown."""
90-
command = [sys.executable, "-c", "from pymongo import MongoClient; c = MongoClient()"]
90+
command = [
91+
sys.executable,
92+
"-c",
93+
"from pymongo import MongoClient; c = MongoClient()",
94+
]
9195
completed_process: subprocess.CompletedProcess = subprocess.run(
9296
command, capture_output=True
9397
)

0 commit comments

Comments
 (0)