Automated update of Base Application package.

This commit is contained in:
bot 2025-01-24 11:15:16 +00:00
parent 4a911b64fc
commit c6a3622f18
4 changed files with 4 additions and 2 deletions

Binary file not shown.

BIN
dist/app-1.0.0.tar.gz vendored

Binary file not shown.

View File

@ -1,4 +1,4 @@
Metadata-Version: 2.1
Metadata-Version: 2.2
Name: app
Version: 1.0.0
Summary: Base application

View File

@ -51,7 +51,9 @@ class BaseApplication(RPCApplication):
)
self.agents = {}
super().__init__(middlewares=middlewares, *args, **kwargs)
self.jinja2_env = aiohttp_jinja2.setup(self, loader=jinja2.FileSystemLoader(self.template_path))
self.jinja2_env = aiohttp_jinja2.setup(
self, loader=jinja2.FileSystemLoader(self.template_path)
)
def run(self, *args, **kwargs):
if kwargs.get("port"):