From 3479f4f06fc539d6d4945d17a6a88beb58ce509b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9rgio=20Jesus?= Date: Fri, 2 Feb 2024 11:40:45 +0000 Subject: [PATCH] Change reference to aequitas flow --- src/aequitas/flow/utils/colab.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/aequitas/flow/utils/colab.py b/src/aequitas/flow/utils/colab.py index 89b894df..9c9c0843 100644 --- a/src/aequitas/flow/utils/colab.py +++ b/src/aequitas/flow/utils/colab.py @@ -14,7 +14,7 @@ def get_examples( "methods/data_repair", ] ) -> None: - """Downloads the examples from the fairflow repository. + """Downloads the examples from the aequitas flow repository. Note that this should not be used outside Google Colab, as it clutters the directory with with the git files from Aequitas repository. @@ -22,11 +22,11 @@ def get_examples( Parameters ---------- directory : Literal["configs", "examples/data_repair", "experiment_results"] - The directory to download from the fairflow repository. + The directory to download from the aequitas flow repository. """ directory = "examples/" + directory logger = create_logger("utils.colab") - logger.info("Downloading examples from fairflow repository.") + logger.info("Downloading examples from aequitas flow repository.") # Create directory if it doesn't exist Path(directory).mkdir(parents=True, exist_ok=True) # Check if git repository already exists in folder