From 907c4556c8eba856fecc666cf5914107a9310a4e Mon Sep 17 00:00:00 2001 From: David Wilson Date: Sun, 20 Jan 2019 19:35:49 +0000 Subject: [PATCH] issue #61: unused variable (reported by LGTM) --- ansible_mitogen/strategy.py | 1 - 1 file changed, 1 deletion(-) diff --git a/ansible_mitogen/strategy.py b/ansible_mitogen/strategy.py index 3cdf85f9..dd17f177 100644 --- a/ansible_mitogen/strategy.py +++ b/ansible_mitogen/strategy.py @@ -75,7 +75,6 @@ def wrap_action_loader__get(name, *args, **kwargs): """ klass = action_loader__get(name, class_only=True) if klass: - wrapped_name = 'MitogenActionModule_' + name bases = (ansible_mitogen.mixins.ActionModuleMixin, klass) adorned_klass = type(str(name), bases, {}) if kwargs.get('class_only'):