Skip to content

Commit 6f27171

Browse files
committed
enh: allow optional entities to be multiple
1 parent e3f7001 commit 6f27171

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

templateflow/cli.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ def entity_opts():
7171

7272
def decorator(f: FC) -> FC:
7373
for arg in reversed(args):
74-
_param_memo(f, Option(arg, type=str, default=''))
74+
_param_memo(f, Option(arg, type=str, default=[], multiple=True))
7575
return f
7676

7777
return decorator

0 commit comments

Comments
 (0)