From 3b64b30706eb9b956fd7b066beeef349f4227ec3 Mon Sep 17 00:00:00 2001 From: iamashwin99 <ashwin-kumar.karnad@mpsd.mpg.de> Date: Fri, 22 Dec 2023 16:13:43 +0100 Subject: [PATCH] isort --- src/mpsd_software_manager/utils/filesystem_utils.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/mpsd_software_manager/utils/filesystem_utils.py b/src/mpsd_software_manager/utils/filesystem_utils.py index 284f1c7..9f5c79f 100644 --- a/src/mpsd_software_manager/utils/filesystem_utils.py +++ b/src/mpsd_software_manager/utils/filesystem_utils.py @@ -2,11 +2,12 @@ import logging import os import sys +from functools import cache from pathlib import Path from mpsd_software_manager import config_vars from mpsd_software_manager.utils.microarch import get_native_microarchitecture -from functools import cache + from .run import run @@ -131,6 +132,7 @@ def clone_repo( else: run(["git", "pull"], check=True, capture_output=capture_output) + @cache def get_important_folders( mpsd_release: str, -- GitLab