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.
1 parent 6793f58 commit 6002137Copy full SHA for 6002137
templateflow/conf/__init__.py
@@ -88,20 +88,24 @@ def _update_datalad():
88
89
def init_layout():
90
from .bids import Layout
91
+ from bids.layout import BIDSLayoutIndexer
92
93
global TF_LAYOUT
94
TF_LAYOUT = Layout(
95
TF_HOME,
96
validate=False,
97
config="templateflow",
- ignore=[
98
- ".git",
99
- ".datalad",
100
- ".gitannex",
101
- ".gitattributes",
102
- ".github",
103
- "scripts",
104
- ],
+ indexer=BIDSLayoutIndexer(
+ validate=False,
+ ignore=(
+ ".git",
+ ".datalad",
+ ".gitannex",
+ ".gitattributes",
105
+ ".github",
106
+ "scripts",
107
+ ),
108
109
)
110
111
0 commit comments