Automated update of Base Application package.

This commit is contained in:
bot 2024-12-19 13:03:00 +00:00
parent aab209f80a
commit 0bf4c1ff82
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):