We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e1e1de9 commit f6b40c5Copy full SHA for f6b40c5
2 files changed
.gitpod.yml
@@ -3,7 +3,9 @@
3
# and commit this file to your remote git repository to share the goodness with others.
4
5
tasks:
6
- - init: pip install -r requirements.txt
+ - init: |
7
+ pip install -r requirements.txt
8
+ pip install -e .
9
vscode:
10
extensions:
11
- ms-python.python
wfcommons/wfchef/chef.py
@@ -11,6 +11,7 @@
import json
12
import argparse
13
import math
14
+import sys
15
import networkx as nx
16
import numpy as np
17
import pandas as pd
@@ -343,6 +344,10 @@ def main():
343
344
parser = get_parser()
345
args = parser.parse_args()
346
347
+ if not hasattr(args, "action"):
348
+ sys.argv.append("--help")
349
+ parser.parse_args()
350
+
351
if args.action == ls_recipe:
352
ls_recipe()
353
elif args.action == uninstall_recipe:
0 commit comments