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
BIN
View File
Binary file not shown.
BIN
View File
Binary file not shown.
+1 -1
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):