File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed
Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 11from . import core
22import json
3- from cfn_flip import yaml
3+ from cfn_tools import load_yaml
4+
45
56def generate_from_json (template_content , name ):
67 result = core .generate (json .loads (template_content ), name )
78 return result
89
910
1011def generate_from_yaml (template_content , name ):
11- result = core .generate (yaml . load_yaml (template_content ), name )
12+ result = core .generate (load_yaml (template_content ), name )
1213 return result
Original file line number Diff line number Diff line change 88
99setuptools .setup (
1010 name = "cloudformation-docs" ,
11- version = "0.3.1 " ,
11+ version = "0.3.2 " ,
1212 author = "Eamonn Faherty" ,
1313 author_email = "packages@designandsolve.co.uk" ,
1414 description = "Generate docs from cloudformation templates" ,
You can’t perform that action at this time.
0 commit comments