Last analyzed a676ae7 2 days ago
Default analysis branch is
Currently analyzing run
Unnecessary elif / else block after continue PYL-R1724
Style
7 months ago7 months old
Unnecessary "else" after "continue", remove the "else" and de-indent the code inside it
 76try:
 77    lg.info('Reading backfiles.txt...')
 78    for line in open(config_variables["backfiles"]):
 79        if list(line)[0] == '#': 80            continue
 81        else:
 82            lg.debug(line)