We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f97f314 commit 9f40782Copy full SHA for 9f40782
jupyterlab-snippets/loader.py
@@ -14,7 +14,7 @@ def __init__(self):
14
def collect_snippets(self):
15
snippets = []
16
for root_path in self.snippet_paths:
17
- for dirpath, dirnames, filenames in os.walk(root_path):
+ for dirpath, dirnames, filenames in os.walk(root_path, followlinks=True):
18
for f in filenames:
19
fullpath = PurePath(dirpath).relative_to(root_path).joinpath(f)
20
0 commit comments