iam working on windows and want to store my projec...
# questions
s
iam working on windows and want to store my project on a network folder. however, when i want to create a pipeline i get an error of incorrect paths (source path must be relative to...). this stems from the variation of pathlib.Path: using without resolve(), it gives me the 'drive letter' specific path (X:/abc), if with .resolve(), it gives me the 'network' specific path (//server.xy/a/b/c/abc). Manually removing the .resolve() from all kedro source files solves the problem. someone has a better solution?