From 6d27fdcd131b6e086e764911ffd9d11422964f05 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juan=20Luis=20Cano=20Rodr=C3=ADguez?= Date: Fri, 12 Apr 2024 10:54:15 +0200 Subject: [PATCH] Add note about possible deprecation MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Juan Luis Cano Rodríguez --- kedro/framework/cli/utils.py | 1 + 1 file changed, 1 insertion(+) diff --git a/kedro/framework/cli/utils.py b/kedro/framework/cli/utils.py index 194b244b5f..eda9bc005c 100644 --- a/kedro/framework/cli/utils.py +++ b/kedro/framework/cli/utils.py @@ -64,6 +64,7 @@ def python_call( def find_stylesheets() -> Iterable[str]: # pragma: no cover + # TODO: Deprecate this function in favour of kedro-sphinx-theme """Fetch all stylesheets used in the official Kedro documentation""" css_path = Path(__file__).resolve().parents[1] / "html" / "_static" / "css" return (str(css_path / "copybutton.css"),)