summaryrefslogtreecommitdiff
path: root/VG101GradeHelper.py
diff options
context:
space:
mode:
authorBoYanZh <32470225+BoYanZh@users.noreply.github.com>2020-10-02 12:38:54 +0800
committerBoYanZh <32470225+BoYanZh@users.noreply.github.com>2020-10-02 12:38:54 +0800
commit718ebd6ec0b517e7357640fad912ff184d543242 (patch)
treea1bb8a4e616ca3c524aaec543fb0a1866f59606e /VG101GradeHelper.py
parentd88e1771d253fbeecb4399d3a6d7e407354f69ec (diff)
update: add --dir option
Diffstat (limited to 'VG101GradeHelper.py')
-rw-r--r--VG101GradeHelper.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/VG101GradeHelper.py b/VG101GradeHelper.py
index 92bfc50..6918d6f 100644
--- a/VG101GradeHelper.py
+++ b/VG101GradeHelper.py
@@ -22,6 +22,10 @@ def parse():
action='store_true',
help='generate score')
parser.add_argument('-t', '--tidy', action='store_true', help='check tidy')
+ parser.add_argument('-d',
+ '--dir',
+ action='store_true',
+ help='create dir for indiviual submission')
parser.add_argument('-i',
'--indv',
action='store_true',
@@ -44,6 +48,7 @@ def parse():
exit(0)
if args.all:
args.indv = True
+ args.dir = True
args.group = True
args.joj = True
args.tidy = True