Skip to content

Commit

Permalink
fix: Resolve module on windows (#4827)
Browse files Browse the repository at this point in the history
  • Loading branch information
nanshakov authored Feb 9, 2025
1 parent 3bb0dca commit efbffa4
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions sdk/python/feast/repo_operations.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ def py_path_to_module(path: Path) -> str:
str(path.relative_to(os.getcwd()))[: -len(".py")]
.replace("./", "")
.replace("/", ".")
.replace("\\", ".")
)


Expand Down

0 comments on commit efbffa4

Please sign in to comment.