Skip to content

Commit 79ec78e

Browse files
committed
Document render.Render class
1 parent 88f741b commit 79ec78e

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

src/ansiblecmdb/render.py

+8
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,14 @@
55

66

77
class Render:
8+
"""
9+
Wrapper class to facilitate rendering.
10+
11+
This is mostly a helper class for finding template locations and
12+
initializing Mako properly. It can also call executable "templates" (python
13+
scripts) for rendering.
14+
15+
"""
816
def __init__(self, tpl, tpl_dirs):
917
self.tpl = tpl
1018
self.tpl_dirs = tpl_dirs

0 commit comments

Comments
 (0)