dvershinin / lastversion

Unused variable found PYL-W0612
Anti-pattern
Major
1 occurrence in this check
Unused variable 'dirs'
126
127    # Search the temporary directory for the .desktop file
128    desktop_file = None
129    for root, dirs, files in os.walk(temp_dir):130        for file in files:
131            if file.endswith(".desktop"):
132                desktop_file = os.path.join(root, file)