From c0bb6b280525dc9a8e80c245a1c9658ba858d18b Mon Sep 17 00:00:00 2001 From: sharinetmc Date: Fri, 13 Dec 2024 11:54:09 -1000 Subject: [PATCH] ruff format --- parsons/zoom/zoom.py | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) diff --git a/parsons/zoom/zoom.py b/parsons/zoom/zoom.py index c05bff934..59ee734a7 100644 --- a/parsons/zoom/zoom.py +++ b/parsons/zoom/zoom.py @@ -126,9 +126,7 @@ def __process_poll_results(self, tbl: Table) -> Table: tbl.remove_column("question_details") # Unpack question values - tbl = tbl.unpack_dict( - "question_details_value", include_original=True, prepend=False - ) + tbl = tbl.unpack_dict("question_details_value", include_original=True, prepend=False) # Remove column from API response tbl.remove_column("question_details_value") @@ -221,9 +219,7 @@ def get_past_meeting_participants(self, meeting_id): See :ref:`parsons-table` for output options. """ - tbl = self._get_request( - f"report/meetings/{meeting_id}/participants", "participants" - ) + tbl = self._get_request(f"report/meetings/{meeting_id}/participants", "participants") logger.info(f"Retrieved {tbl.num_rows} participants.") return tbl @@ -288,9 +284,7 @@ def get_past_webinar_participants(self, webinar_id): See :ref:`parsons-table` for output options. """ - tbl = self._get_request( - f"report/webinars/{webinar_id}/participants", "participants" - ) + tbl = self._get_request(f"report/webinars/{webinar_id}/participants", "participants") logger.info(f"Retrieved {tbl.num_rows} webinar participants.") return tbl