-
Notifications
You must be signed in to change notification settings - Fork 133
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
add method and test webinar report #1213
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It looks like there's a formatting check with ruff
that's failing - I would recommend looking into it to get it resolved but not existential imo
parsons/zoom/zoom.py
Outdated
@@ -40,7 +40,7 @@ def __init__(self, account_id=None, client_id=None, client_secret=None): | |||
authorization_kwargs={"account_id": self.account_id}, | |||
) | |||
|
|||
def _get_request(self, endpoint, data_key, params=None, **kwargs): | |||
def _get_request(self, endpoint, data_key=None, params=None, **kwargs): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
what's the rationale behind defaulting this to None
type?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This method that I have returns data that doesn't need to be parsed further using a key.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
But I guess it doesn't necessarily need to be a default value
Add get_webinar_report method to zoom connector