Skip to content

Commit 7cb3db8

Browse files
committed
Fix indent
1 parent 4476223 commit 7cb3db8

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

plugin_exporter/plugin_exporter.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ def __init__(self, iface):
7474
# Must be set in initGui() to survive plugin reloads
7575
self.first_start = None
7676

77-
#List that will contain the metadata of all installed plugins
77+
# List that will contain the metadata of all installed plugins
7878
self.plugins_metadata = []
7979

8080
# noinspection PyMethodMayBeStatic
@@ -233,7 +233,7 @@ def add_plugins_to_table(self, plugins):
233233
metadata = self.iface.pluginManagerInterface().pluginMetadata(plugin)
234234
if self.dlg.chk_official_plugins.isChecked():
235235
if metadata['zip_repository'] == 'QGIS Official Plugin Repository':
236-
self.plugins_metadata.append(metadata) #Adds the plugin metadata to the list
236+
self.plugins_metadata.append(metadata) # Adds the plugin metadata to the list
237237
else:
238238
continue
239239
else:
@@ -353,8 +353,8 @@ def import_plugins(self):
353353
"Skipped " + plugin['name'] + " as it's already installed.")
354354
continue
355355
try:
356-
pyplugin_installer.instance().installPlugin(plugin['id'])
357-
self.iface.messageBar().pushSuccess("Success", plugin['name'] + " was installed successfully.")
356+
pyplugin_installer.instance().installPlugin(plugin['id'])
357+
self.iface.messageBar().pushSuccess("Success", plugin['name'] + " was installed successfully.")
358358
except KeyError:
359359
self.iface.messageBar().pushMessage("Error",
360360
"Could not install " + plugin['name'] + ".",

0 commit comments

Comments
 (0)