jayvdb / sre-tools

Function contains unused argument PYL-W0613
Anti-pattern
Major
1 occurrence in this check
Unused argument 'error'
11    raise error(msg)
12
13
14def preprocess(seq, error=_handle_error):15    for tok, val in list(seq):
16        if tok == IN:
17            negate = val[0] == (NEGATE, None)