dvershinin / lastversion

Unused variable found PYL-W0612
Anti-pattern
3 months agoa year old
Unused variable 'dirs'
125
126    # Search the temporary directory for the .desktop file
127    desktop_file = None
128    for root, dirs, files in os.walk(temp_dir):129        for file in files:
130            if file.endswith(".desktop"):
131                desktop_file = os.path.join(root, file)