From 6c9bcff78597f6e2471c9bc2fe56c60fb751b18a Mon Sep 17 00:00:00 2001
From: Hans Fangohr <hans.fangohr@mpsd.mpg.de>
Date: Fri, 9 Jun 2023 12:49:30 +0200
Subject: [PATCH] black

---
 mpsd-software-environment.py | 7 +++----
 1 file changed, 3 insertions(+), 4 deletions(-)

diff --git a/mpsd-software-environment.py b/mpsd-software-environment.py
index c5114f8..5fd2e16 100755
--- a/mpsd-software-environment.py
+++ b/mpsd-software-environment.py
@@ -508,9 +508,7 @@ def record_script_execution_summary(
                 )
 
 
-def clone_repo(
-    target_path: Path, repo_url: str, branch=None
-) -> None:
+def clone_repo(target_path: Path, repo_url: str, branch=None) -> None:
     """Clone repo locally. Optionally checkout a branch.
 
     Parameters
@@ -645,7 +643,8 @@ def prepare_environment(mpsd_release: str, root_dir: Path) -> List[str]:
     if repo_path.exists():
         logging.debug(f"directory {repo_path} exists already, not touching")
         logging.debug(
-            "XXX TODO: should we run a git pull here to get the latest version? XXX")
+            "XXX TODO: should we run a git pull here to get the latest version? XXX"
+        )
     else:
         repo_url = config_vars["spack_environments_repo"]
         logging.info(f"cloning repository {repo_path} from {repo_url}")
-- 
GitLab