Closed xiaosongshine closed 5 years ago
Describe the bug A clear and concise description of what the bug is. code in line 12-13
parser.parse_args() return parser.json
are supossed to be change into
arg = parser.parse_args() return arg.json
or you wil get
AttributeError: 'ArgumentParser' object has no attribute 'json'
Thanks for bringing this up. Would you mind make a PR?
Ok, I will do it later..
This bug has fixed by pr
Describe the bug A clear and concise description of what the bug is. code in line 12-13
are supossed to be change into
or you wil get