fix (Table): Return method after save_query.

This commit is contained in:
2022-04-26 03:24:38 +03:00
parent a5d23b5153
commit 60e59246ab

View File

@@ -95,6 +95,7 @@ class Table:
Decorator to add a saved query to the table. Decorator to add a saved query to the table.
""" """
self.queries[func.__name__] = func self.queries[func.__name__] = func
return func
class Row: class Row: