From 6a860da19716d79b424c78fa09685125e7c2520b Mon Sep 17 00:00:00 2001 From: prjxuk Date: Thu, 11 Aug 2022 22:12:46 +0100 Subject: [PATCH] Fixed issue in senders, removing remnants of dict()'s so they now properly process QResultsModel --- lib/base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/base.py b/lib/base.py index 519edf1..8c84984 100644 --- a/lib/base.py +++ b/lib/base.py @@ -159,7 +159,7 @@ def parse(self, poller : QPollConnector): result_type = poller.get_result_type() if result_type == QConsts.RESULT_SINGLE: - parsed = self.format(poller.results, poller.export_list()) + parsed = self.format(poller.results) results.append(parsed) elif result_type == QConsts.RESULT_TABLE: