I choose multi files in both parameter,but train_files pint only one file,while pred_files pint multi files.
When I interchanged the position of two lines of parameter code like this:
parser.add_argument('train_files', metavar='train file path', help='can choose multi file', nargs='+', widget='MultiFileChooser')
parser.add_argument('pred_files', metavar='pred file path', help='can choose multi file', nargs='+', widget='MultiFileChooser')
pred_files pint only one file,while train_files pint multi files.
It looks like the following code is going to be wrong.
by the way,my file names has blank space.
Win10;Python 3.10;Gooey 1.0.8.1.
my code like this:
I choose multi files in both parameter,but train_files pint only one file,while pred_files pint multi files. When I interchanged the position of two lines of parameter code like this:
pred_files pint only one file,while train_files pint multi files. It looks like the following code is going to be wrong. by the way,my file names has blank space.