From 922db1ae8ea2b272eb0b31f0b8e00101082e49c1 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Thu, 11 May 2023 21:47:14 +0000 Subject: [PATCH] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- integration-tests/test_hub.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/integration-tests/test_hub.py b/integration-tests/test_hub.py index 0b282ed..9991e0c 100644 --- a/integration-tests/test_hub.py +++ b/integration-tests/test_hub.py @@ -404,7 +404,9 @@ async def test_idle_server_culled(): # Extract the xsrf token from the _xsrf cookie set after visiting # /hub/login with the u.session - hub_cookie = u.session.cookie_jar.filter_cookies(str(u.hub_url / "hub/api/user")) + hub_cookie = u.session.cookie_jar.filter_cookies( + str(u.hub_url / "hub/api/user") + ) assert "_xsrf" in hub_cookie hub_xsrf_token = hub_cookie["_xsrf"].value