Global variable is declared but not used PYL-W0602
Bug risk
Major
4 days ago2 years old
Using global for 'families_excepts' but no assignment is done
114
115def main():
116    """Main loop processing sites."""
117    global families_excepts118    q = Queue()
119    threads = spawn_threads(q)
120    for fam_name in families_list:
Using global for 'families_excepts' but no assignment is done
 82
 83def threads_target(q):
 84    """Thread processing a single site."""
 85    global families_excepts 86    while True:
 87        try:
 88            fam, code = q.get()