I have set up a parser argument as such:
parser.add_argument('-r', '--run', metavar='plugin', nargs='+', action='store', help='Vælg hvilket plugin du gerne vil køre.')
I would like to be able to do this however:
py -m main -r 'klyngeindberetning' -i ['107', '108', '109']
Right now it can do:
py -m main -r 'klyngeindberetning' ['107', '108', '109']
but not the one above this ^, which I need because I have to distinguish between 2 types of IDs that you are supposed to ignore. One for "klynger" (could be e.g. -ik or -i -k) and one for documents/files (could be e.g. -i -d). How do I do that?