In line 16 of the skimTree program there is an extra quotation mark that gives a syntax error.
parser.add_argument("-r", "--remove", default="", help="List of branches, which are removed from tree, e.g., "pt eta abseta" or "tag_*, all removes them all unless something is kept with --keep"")
^
SyntaxError: EOL while scanning string literal
This is fixed by replacing line 16 with
parser.add_argument("-r", "--remove", default="", help="List of branches, which are removed from tree, e.g., "pt eta abseta" or "tag_*, all removes them all unless something is kept with --keep")
Rhys
In line 16 of the skimTree program there is an extra quotation mark that gives a syntax error.
parser.add_argument("-r", "--remove", default="", help="List of branches, which are removed from tree, e.g., "pt eta abseta" or "tag_*, all removes them all unless something is kept with --keep"")
^
SyntaxError: EOL while scanning string literal
This is fixed by replacing line 16 with
parser.add_argument("-r", "--remove", default="", help="List of branches, which are removed from tree, e.g., "pt eta abseta" or "tag_*, all removes them all unless something is kept with --keep")
Rhys