diff options
Diffstat (limited to 'gn3')
-rw-r--r-- | gn3/api/metadata_api/wiki.py | 2 | ||||
-rw-r--r-- | gn3/db/wiki.py | 8 |
2 files changed, 5 insertions, 5 deletions
diff --git a/gn3/api/metadata_api/wiki.py b/gn3/api/metadata_api/wiki.py index 0fe228f..8df6cfb 100644 --- a/gn3/api/metadata_api/wiki.py +++ b/gn3/api/metadata_api/wiki.py @@ -83,7 +83,7 @@ def edit_wiki(comment_id: int): sparql_auth_uri=current_app.config["SPARQL_AUTH_URI"] ) except Exception as exc: - conn.rollback() + conn.rollback() # type: ignore raise exc return jsonify({"success": "ok"}) return jsonify(error="Error editing wiki entry, most likely due to DB error!"), 500 diff --git a/gn3/db/wiki.py b/gn3/db/wiki.py index 4721a69..0f46855 100644 --- a/gn3/db/wiki.py +++ b/gn3/db/wiki.py @@ -11,11 +11,11 @@ class MissingDBDataException(Exception): def _decode_dict(result: dict): new_result = {} - for k, v in result.items(): - if isinstance(v, bytes): - new_result[k] = v.decode() + for key, val in result.items(): + if isinstance(val, bytes): + new_result[key] = val.decode() else: - new_result[k] = v + new_result[key] = val return new_result |