Skip to content

Commit c18810d

Browse files
committed
ENH: Add __main__ to allow python -m bids to run CLI
1 parent bab04e4 commit c18810d

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

bids/__main__.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
from .cli import cli
2+
3+
if __name__ == '__main__':
4+
cli()

0 commit comments

Comments
 (0)