Enable async.
All checks were successful
Build Base Application / Build (push) Successful in 1m54s

This commit is contained in:
retoor 2025-01-27 17:04:39 +01:00
parent 5c08d4475b
commit 7bf12f1b46

View File

@ -68,7 +68,7 @@ class BaseApplication(RPCApplication):
self.agents = {}
super().__init__(middlewares=middlewares, *args, **kwargs)
self.jinja2_env = aiohttp_jinja2.setup(
self, loader=jinja2.FileSystemLoader(self.template_path), enable_async=True
self, loader=jinja2.FileSystemLoader(self.template_path)
)
def run(self, *args, **kwargs):