Skip to content

Commit 21840e9

Browse files
committed
cleaning up
1 parent e80bd03 commit 21840e9

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

cloudformation_docs/sdk.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
from . import core
22
import json
3-
from cfn_flip import yaml
3+
from cfn_tools import load_yaml
4+
45

56
def generate_from_json(template_content, name):
67
result = core.generate(json.loads(template_content), name)
78
return result
89

910

1011
def 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

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
setuptools.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",

0 commit comments

Comments
 (0)