put args in newline

This commit is contained in:
Daniel 2023-12-07 19:12:54 +01:00
parent 0b4e0a0c16
commit fb7f6c3a37

View file

@ -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])