We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 929d143 + d6db18c commit 799d320Copy full SHA for 799d320
neuroscout_cli/commands/install.py
@@ -64,7 +64,10 @@ def download_data(self):
64
path=str(self.preproc_dir.parents[0]))
65
66
# Get all JSON files
67
- get([str(p) for p in self.preproc_dir.rglob('*.json')])
+ jsons = list(self.preproc_dir.rglob('*.json'))
68
+ print(jsons)
69
+ if jsons:
70
+ get([str(p) for p in self.preproc_dir.rglob('*.json')])
71
72
layout = BIDSLayout(
73
self.preproc_dir,
0 commit comments