From 30d3f3b8429fb84e3df94a32928fcb1605403671 Mon Sep 17 00:00:00 2001 From: Benjamin Schimke Date: Fri, 20 Dec 2024 14:14:42 +0100 Subject: [PATCH] linter --- tests/integration/tests/test_util/harness/lxd.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/tests/integration/tests/test_util/harness/lxd.py b/tests/integration/tests/test_util/harness/lxd.py index 8265e9849..6ce420de8 100644 --- a/tests/integration/tests/test_util/harness/lxd.py +++ b/tests/integration/tests/test_util/harness/lxd.py @@ -131,9 +131,7 @@ def new_instance(self, network_type: str = "IPv4") -> Instance: except subprocess.CalledProcessError as e: raise HarnessError(f"Failed to create LXD container {instance_id}") from e - stubbornly(retries=3, delay_s=5).exec( - ["snap", "wait", "system", "seed.loaded"] - ) + stubbornly(retries=3, delay_s=5).exec(["snap", "wait", "system", "seed.loaded"]) return Instance(self, instance_id) def _configure_profile(self, profile_name: str, profile_config: str):