From 1b8d62aeb49c521448a042d0e554bee771d575d1 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Mon, 9 Dec 2024 11:52:19 +0000 Subject: [PATCH] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- ipyparallel/tests/test_mongodb.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ipyparallel/tests/test_mongodb.py b/ipyparallel/tests/test_mongodb.py index 0df19ab1..45616a50 100644 --- a/ipyparallel/tests/test_mongodb.py +++ b/ipyparallel/tests/test_mongodb.py @@ -31,7 +31,7 @@ def mongo_conn(request): conn_kwargs['port'] = int(os.environ['DB_PORT']) try: - c = MongoClient(**conn_kwargs, serverSelectionTimeoutMS = 2000) + c = MongoClient(**conn_kwargs, serverSelectionTimeoutMS=2000) servinfo = c.server_info() except Exception: c = None