From ed3c0a546982dd74ca850e9ae528a241be4aebe2 Mon Sep 17 00:00:00 2001 From: Neil Booth Date: Tue, 29 Dec 2015 23:08:10 +0900 Subject: [PATCH] Remove a name-clashing unnecessary local variable --- lib/plugins.py | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/lib/plugins.py b/lib/plugins.py index 8b9e3954..0b4e8503 100644 --- a/lib/plugins.py +++ b/lib/plugins.py @@ -98,11 +98,7 @@ class Plugins(DaemonThread): __import__(dep) except ImportError: return False - wallet_types = d.get('requires_wallet_type') - if wallet_types: - if w.wallet_type not in wallet_types: - return False - return True + return w.wallet_type in d.get('requires_wallet_type', []) def wallet_plugin_loader(self, config, name): if self.plugins.get(name) is None: @@ -202,4 +198,3 @@ class BasePlugin(PrintError): def settings_dialog(self): pass -