def convert_json_to_yaml(json_str):
'''Convert a string containing the AWS JSON template format
- to an equivalent string containing the Heat YAML format.'''
+ to an equivalent string containing the Heat YAML format.
+ '''
global key_order
# Replace AWS format version with Heat format version
def iteritems(self):
"""Make the model object behave like a dict.
- Includes attributes from joins."""
+ Includes attributes from joins.
+ """
local = dict(self)
joined = dict([(k, v) for k, v in self.__dict__.iteritems()
if not k[0] == '_'])
python setup.py testr --coverage
[flake8]
-ignore = F403,F841,H201,H302,H303,H306,H403,H404,H702,H703
+ignore = F403,F841,H201,H302,H303,H306,H404,H702,H703
show-source = true
builtins = _
exclude=.venv,.git,.tox,dist,doc,*openstack/common*,*lib/python*,*egg,tools,build