File: environment.py

package info (click to toggle)
python-django-csp 3.8-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 300 kB
  • sloc: python: 935; makefile: 135; sh: 6
file content (6 lines) | stat: -rw-r--r-- 109 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
from jinja2 import Environment


def environment(**options):
    env = Environment(**options)
    return env