fix black

This commit is contained in:
2023-09-22 09:54:32 +02:00
parent c3b1d69416
commit c730a98168
3 changed files with 5 additions and 13 deletions

View File

@@ -43,9 +43,7 @@ def db_update(dbdict, libid, **kwargs):
if libid not in dbdict:
dbdict[libid] = {}
for key, value in kwargs.items():
logging.debug(
"Updating '%s' of library '%s' in in-memory cache dictionary", key, libid
)
logging.debug("Updating '%s' of library '%s' in in-memory cache dictionary", key, libid)
dbdict[libid][key] = value
db_write(dbdict)