Closed ian-contiamo closed 7 years ago
As an alternative to self.parent.parent.query_sql in query_all, we could define either:
self.parent.parent.query_sql
query_all
self.parent_project = self.parent.parent self.query_sql = self.parent.parent.query_sql
And then call:
self.parent_project.query_sql(...) self.query_sql(...)
As an alternative to
self.parent.parent.query_sql
inquery_all
, we could define either:And then call: