chore: update base application package dependencies and configuration files

This commit is contained in:
bot 2024-12-19 13:03:00 +00:00
parent 27230d8c9c
commit 164f655d24
3 changed files with 1 additions and 1 deletions

Binary file not shown.

BIN
dist/app-1.0.0.tar.gz vendored

Binary file not shown.

View File

@ -178,7 +178,7 @@ class WebDbApplication(BaseApplication):
value = json.dumps(value, default=str)
return self.db["kv"].upsert({"key": key, "value": value}, ["key"])
async def get(self, key,default=None):
async def get(self, key, default=None):
return self.sget(key, default)
def sget(self, key, default=None):