From f1d145f8c0a18e9112630b842cfdeb3d06e7fa21 Mon Sep 17 00:00:00 2001 From: Christopher Lam Date: Fri, 7 Jun 2024 23:09:41 +0800 Subject: [PATCH] fake fix for tests --- bindings/python/gnucash_core.py | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/bindings/python/gnucash_core.py b/bindings/python/gnucash_core.py index 993ad8919b..27ee2897d5 100644 --- a/bindings/python/gnucash_core.py +++ b/bindings/python/gnucash_core.py @@ -791,6 +791,14 @@ class GncCommodityTable(GnuCashCoreClass): which includes most of the world's currencies. """ + def get_quotable_commodities (self): + print ("hello from get_quotable_commodities") + return + + def get_commodities(self): + print ("hello from get_commodities") + return + def _get_namespaces_py(self): return [ns.get_name() for ns in self.get_namespaces_list()]