We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents f97f314 + 9f40782 commit dfa4350Copy full SHA for dfa4350
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