Skip to content

Commit 54a685f

Browse files
committed
Token is now required
1 parent 1f73753 commit 54a685f

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

scripts/submit.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,12 @@
77
import argparse
88

99
# Settings
10-
CROWDAI_TOKEN = "518ec33d7af656bddfcb83ab614ba079"
1110
remote_base = 'http://grader.crowdai.org'
1211

1312
# Command line parameters
1413
parser = argparse.ArgumentParser(description='Submit the result to crowdAI')
1514
parser.add_argument('--model', dest='model', action='store', default="example_actor.h5f")
16-
parser.add_argument('--token', dest='token', action='store', default=CROWDAI_TOKEN)
15+
parser.add_argument('--token', dest='token', action='store', required=True)
1716
args = parser.parse_args()
1817

1918
env = GaitEnv(visualize=False)

0 commit comments

Comments
 (0)