From fb7f6c3a3786b9b489d2b600561c588834b7574c Mon Sep 17 00:00:00 2001 From: Daniel Date: Thu, 7 Dec 2023 19:12:54 +0100 Subject: [PATCH] put args in newline --- pytest_abra/coordinator.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/pytest_abra/coordinator.py b/pytest_abra/coordinator.py index 74c4ea2..66e953a 100644 --- a/pytest_abra/coordinator.py +++ b/pytest_abra/coordinator.py @@ -14,7 +14,12 @@ from pytest_abra.utils import rmtree class Coordinator: def __init__( - self, env_paths_list: list[Path], output_dir: Path, session_id: str, recipes_dir: Path, timeout: int + self, + env_paths_list: list[Path], + output_dir: Path, + session_id: str, + recipes_dir: Path, + timeout: int, ) -> None: # logging out_string = "".join([e.name + "\n" for e in env_paths_list])