bandit/examples/mako_templating.py

12 lines
292 B
Python

from mako.template import Template
import mako
from mako import template
Template("hello")
# XXX(fletcher): for some reason, bandit is missing the one below. keeping it
# in for now so that if it gets fixed inadvertitently we know.
mako.template.Template("hern")
template.Template("hern")