We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 538a5ec commit 921e066Copy full SHA for 921e066
1 file changed
src/mads/lib/path.py
@@ -84,3 +84,17 @@ def __truediv__(self, other: str) -> Path:
84
"""Find files as if the finder was a Path: finder / 'file.txt'"""
85
86
return self.find(other)
87
+
88
89
+assets = PathFinder(
90
+ [
91
+ "./assets/",
92
+ "./data/",
93
+ "./",
94
+ "/voc/data/",
95
+ "/voc/course/public/data/",
96
+ "/voc/course/public/assets/",
97
+ "/home/jovyan/assets/",
98
+ "/home/jovyan/data/",
99
+ ]
100
+)
0 commit comments