From adaff5638d066806e3c0eb4e334f59311e4b278b Mon Sep 17 00:00:00 2001 From: XANTRONIX Development Date: Sat, 9 Nov 2024 10:37:16 -0500 Subject: [PATCH] Start adding some type decorators --- lib/nntp/tiny/db.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/nntp/tiny/db.py b/lib/nntp/tiny/db.py index 70d92d1..5e953b9 100644 --- a/lib/nntp/tiny/db.py +++ b/lib/nntp/tiny/db.py @@ -112,5 +112,5 @@ class Database(): return cr - def get(self, table, values=dict()): + def get(self, table, values: dict=dict()): return self.query(table, values).fetchone()