This is a little-bit silly, but it's the last thing. pyflakes parses
python lines that are in docstring comments that are prefaced by >>>.
So, without the import, pyflakes complains about undefined import.
Change-Id: Ibac77367efb07b65b992694b2de19473ec9ef473
Example:
- >>> template = Template(template_format.parse(template_path))
+ >>> from heat.common import template_format
+ >>> template_str = '# JSON or YAML encoded template'
+ >>> template = Template(template_format.parse(template_str))
>>> parameters = Parameters('stack', template, {'KeyName': 'my_key'})
>>> resolve_static_data(template, None, parameters, {'Ref': 'KeyName'})
'my_key'