1
0
mirror of https://github.com/EDCD/EDMarketConnector.git synced 2025-04-15 08:40:34 +03:00

Specify 'edmc' argument to argparse

Else it complains that the Frontier Auth callback argument is an error.
This commit is contained in:
Athanasius 2021-03-06 12:48:24 +00:00
parent a532f38e2e
commit d9734a759d

View File

@ -60,6 +60,11 @@ if __name__ == '__main__': # noqa: C901
action='store_true'
)
parser.add_argument('edmc',
help='Callback from Frontier Auth',
nargs='*'
)
args = parser.parse_args()
if args.trace: