From c73c08787c69531a2bfc1af08f42e28717acea56 Mon Sep 17 00:00:00 2001 From: nanshakov Date: Tue, 10 Dec 2024 14:14:12 +0300 Subject: [PATCH] Update repo_operations.py fix resolve module on windows Signed-off-by: Nik --- sdk/python/feast/repo_operations.py | 1 + 1 file changed, 1 insertion(+) diff --git a/sdk/python/feast/repo_operations.py b/sdk/python/feast/repo_operations.py index 4db0bbc6fdb..a3bf52fb10e 100644 --- a/sdk/python/feast/repo_operations.py +++ b/sdk/python/feast/repo_operations.py @@ -43,6 +43,7 @@ def py_path_to_module(path: Path) -> str: str(path.relative_to(os.getcwd()))[: -len(".py")] .replace("./", "") .replace("/", ".") + .replace("\\", ".") )