(self, *args, **kwargs)
| 46 | |
| 47 | class Environment(jinja2.Environment): |
| 48 | def __init__(self, *args, **kwargs): |
| 49 | super().__init__(*args, **kwargs) |
| 50 | self.filters["tojavascript"] = tojavascript |
| 51 | |
| 52 | |
| 53 | class Template(jinja2.Template): |
nothing calls this directly
no outgoing calls
no test coverage detected