Skip to content

Commit

Permalink
ruff format
Browse files Browse the repository at this point in the history
  • Loading branch information
sharinetmc committed Dec 13, 2024
1 parent 9108d38 commit c0bb6b2
Showing 1 changed file with 3 additions and 9 deletions.
12 changes: 3 additions & 9 deletions parsons/zoom/zoom.py
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down Expand Up @@ -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

Expand Down Expand Up @@ -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

Expand Down

0 comments on commit c0bb6b2

Please sign in to comment.