Skip to content

Commit 053d04e

Browse files
committed
Fix lint.
1 parent 57a44e1 commit 053d04e

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

actions/lib/action.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,6 +165,7 @@ def do_function(self, module_path, action, **kwargs):
165165

166166
if self.debug:
167167
function_fqdn = '%s.%s' % (module_path, action)
168-
self.logger.debug('Calling function "%s" with kwargs: %s' % (function_fqdn, str(kwargs)))
168+
self.logger.debug('Calling function "%s" with kwargs: %s' % (function_fqdn,
169+
str(kwargs)))
169170

170171
return getattr(module, action)(**kwargs)

0 commit comments

Comments
 (0)