Skip to content

Commit

Permalink
Fix style
Browse files Browse the repository at this point in the history
  • Loading branch information
micafer committed Oct 21, 2021
1 parent 2131e75 commit cadb0ac
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions IM/tosca/Tosca.py
Original file line number Diff line number Diff line change
Expand Up @@ -1620,7 +1620,7 @@ def _get_root_parent_type(node):
return node_type

@staticmethod
def _get_interfaces(node, interface_names=['Standard','Configure'],
def _get_interfaces(node, interface_names=['Standard', 'Configure'],
steps=['create', 'configure', 'start', 'stop', 'delete']):
"""
Get a dict of InterfacesDef of the specified node
Expand All @@ -1638,7 +1638,7 @@ def _get_interfaces(node, interface_names=['Standard','Configure'],
if name in steps:
if name not in interfaces:
interfaces[name] = InterfacesDef(node_type, interface_name, name=name,
value=elems, node_template=node)
value=elems, node_template=node)

if node_type.parent_type is not None:
node_type = node_type.parent_type
Expand Down

0 comments on commit cadb0ac

Please sign in to comment.