Addon Manager: pylint cleanup of devmode

This commit is contained in:
Chris Hennes
2023-02-21 10:39:57 -06:00
committed by Chris Hennes
parent efdbccd0b2
commit 0a8037a27d
11 changed files with 103 additions and 98 deletions

View File

@@ -72,9 +72,9 @@ class LicensesTable:
"""Use the passed metadata object to populate the maintainers and authors"""
self.widget.tableWidget.setRowCount(0)
row = 0
for l in self.metadata.License:
shortcode = l["name"]
path = l["file"]
for lic in self.metadata.License:
shortcode = lic["name"]
path = lic["file"]
self._add_row(row, shortcode, path)
row += 1