Commit 47b08850 by Marius Gedminas

Don't mix tabs and spaces

It's not allowed in Python 3 and merely a bad idea in Python 2.
parent 0c6ce31f
......@@ -370,7 +370,7 @@ class Role(Base, Become, Conditional, Taggable):
def deserialize(self, data, include_deps=True):
self._role_name = data.get('_role_name', '')
self._role_path = data.get('_role_path', '')
self._role_vars = data.get('_role_vars', dict())
self._role_vars = data.get('_role_vars', dict())
self._role_params = data.get('_role_params', dict())
self._default_vars = data.get('_default_vars', dict())
self._had_task_run = data.get('_had_task_run', dict())
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment