From 60e59246abe70d85bb2b4dd2a27a3192cdb5d481 Mon Sep 17 00:00:00 2001 From: Conatum Date: Tue, 26 Apr 2022 03:24:38 +0300 Subject: [PATCH] fix (Table): Return method after `save_query`. --- bot/data/interfaces.py | 1 + 1 file changed, 1 insertion(+) diff --git a/bot/data/interfaces.py b/bot/data/interfaces.py index 44cc4a3c..1df7ff56 100644 --- a/bot/data/interfaces.py +++ b/bot/data/interfaces.py @@ -95,6 +95,7 @@ class Table: Decorator to add a saved query to the table. """ self.queries[func.__name__] = func + return func class Row: