Welcome to mirror list, hosted at ThFree Co, Russian Federation.

dev.gajim.org/gajim/gajim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'gajim/common/storage/cache.py')
-rw-r--r--gajim/common/storage/cache.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/gajim/common/storage/cache.py b/gajim/common/storage/cache.py
index 928a6cc2c..0eb0e3b8c 100644
--- a/gajim/common/storage/cache.py
+++ b/gajim/common/storage/cache.py
@@ -124,7 +124,7 @@ class CacheStorage(SqliteStorage):
row: tuple[Any, ...]) -> NamedTuple:
assert cursor.description is not None
- fields = [col[0] for col in cursor.description] # pyright: ignore
+ fields = [col[0] for col in cursor.description]
Row = namedtuple('Row', fields) # pyright: ignore
return Row(*row)