- fix bug in python DB code

This commit is contained in:
David Anderson 2022-04-21 12:56:08 -07:00
parent 6b13c8c12e
commit b99132c65c
1 changed files with 1 additions and 1 deletions

View File

@ -318,7 +318,7 @@ class DatabaseTable:
return
def _create_objects_from_sql_results(self, results, kwargs):
return [ self._create_object_from_sql_result for result in results ]
return [ self._create_object_from_sql_result(result) for result in results ]
def _create_object_from_sql_result(self, result):
id = result['id']