From c3b65f53049f226eef974b8eff2a9f5d20b5907d Mon Sep 17 00:00:00 2001 From: retoor Date: Tue, 31 Dec 2024 20:34:11 +0100 Subject: [PATCH] Update template path. --- src/app/app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/app.py b/src/app/app.py index bfcaafc..4d605d1 100644 --- a/src/app/app.py +++ b/src/app/app.py @@ -47,7 +47,7 @@ class BaseApplication(RPCApplication): self.template_path = ( template_path and template_path - or pathlib.Path(__file__).parent / "templates" + or pathlib.Path(__file__).parent.joinpath("templates") ) self.agents = {} super().__init__(middlewares=middlewares, *args, **kwargs)