fixed issue caused by passing kwarg to arg_parser.add_argument()
This commit is contained in:
parent
bdeeea78df
commit
ad311bc0e2
1 changed files with 1 additions and 1 deletions
|
@ -5,7 +5,7 @@ import decouple
|
||||||
import argparse
|
import argparse
|
||||||
|
|
||||||
arg_parser = argparse.ArgumentParser()
|
arg_parser = argparse.ArgumentParser()
|
||||||
arg_parser.add_argument("admin_seed", required=True)
|
arg_parser.add_argument("admin_seed")
|
||||||
args = arg_parser.parse_args()
|
args = arg_parser.parse_args()
|
||||||
|
|
||||||
r = requests.post("http://localhost:{}/create".format(decouple.config("PORT")),
|
r = requests.post("http://localhost:{}/create".format(decouple.config("PORT")),
|
||||||
|
|
Loading…
Reference in a new issue