Skip to content

Commit

Permalink
Fixed issue in senders, removing remnants of dict()'s so they now pro…
Browse files Browse the repository at this point in the history
…perly process QResultsModel
  • Loading branch information
projx committed Aug 11, 2022
1 parent e539d97 commit 6a860da
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 6a860da

Please sign in to comment.