about summary refs log tree commit diff
path: root/gn3/db
diff options
context:
space:
mode:
authorJohn Nduli2024-09-24 15:41:26 +0300
committerBonfaceKilz2024-09-30 11:14:08 +0300
commit04dc9fbcbce400265a916e8a60d358a26a22cb0b (patch)
tree6a1f7826e809f404f4adf08d8cecc769dd70d439 /gn3/db
parent8e1e33aa8991477c3141116ab28aa28a324b0c41 (diff)
downloadgenenetwork3-04dc9fbcbce400265a916e8a60d358a26a22cb0b.tar.gz
chore: pylint code fix
Diffstat (limited to 'gn3/db')
-rw-r--r--gn3/db/wiki.py8
1 files changed, 4 insertions, 4 deletions
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