Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
mlin committed Feb 19, 2019
1 parent ee7e21c commit 21c5dd8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
3 changes: 3 additions & 0 deletions WDL/CLI.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
"""
miniwdl command-line interface
"""
# PYTHON_ARGCOMPLETE_OK
import sys
import os
import subprocess
Expand All @@ -10,6 +11,7 @@
from shlex import quote as shellquote
from datetime import datetime
from argparse import ArgumentParser
import argcomplete
import WDL
import WDL.Lint

Expand All @@ -24,6 +26,7 @@ def main(args=None):
fill_common(fill_check_subparser(subparsers))
fill_common(fill_cromwell_subparser(subparsers))

argcomplete.autocomplete(parser)
args = parser.parse_args(args if args is not None else sys.argv[1:])

try:
Expand Down
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# Packages needed for miniwdl to run in common use. Additional packages needed
# for miniwdl development are listed in requirements.dev.txt.
lark-parser==0.6.6
argcomplete

0 comments on commit 21c5dd8

Please sign in to comment.