added an r to require

This commit is contained in:
Alexander Munch-Hansen 2020-12-29 20:51:19 +01:00
parent b5810383f3
commit e39a80ee2e
1 changed files with 1 additions and 1 deletions

View File

@ -12,7 +12,7 @@ parser.add_argument('--source_file', action='store', dest='source_file',
type=str, required=True,
help='which file to read from')
parser.add_argument('--collection_id', action='store', dest='collection_id',
type=str, require=True,
type=str, required=True,
help='The id of the collection the contents of the source file should be added to')
parser.add_argument('--project_id', action='store', dest='project_id',
type=str, default='navedu-test',